ImagesTable: Change 'beta' to 'preview' in Launch popover

This commit is contained in:
lucasgarfield 2023-05-05 10:18:37 +02:00 committed by Lucas Garfield
parent 675a676709
commit 70c232471a
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ export const RegionsPopover = ({ composeId }) => {
isInline isInline
component="a" component="a"
variant="link" variant="link"
href="/beta/insights/image-builder/landing" href="/preview/insights/image-builder/landing"
> >
<BetaLabel /> <BetaLabel />
Launch from here Launch from here

View file

@ -7,7 +7,7 @@ import './BetaLabel.scss';
const BetaLabel = () => { const BetaLabel = () => {
return ( return (
<Label className="beta-label"> <Label className="beta-label">
<b>Beta</b> <b>Preview</b>
</Label> </Label>
); );
}; };