remove cloudMode condition

This commit is contained in:
Francis Cao 2024-02-13 23:53:06 -08:00
parent 474113fe32
commit 928fb3ee89

View File

@ -12,7 +12,7 @@ export function WebsitesHeader({ teamId, allowCreate = true }: WebsitesHeaderPro
return (
<PageHeader title={formatMessage(labels.websites)}>
{allowCreate && !process.env.cloudMode && <WebsiteAddButton teamId={teamId} />}
{allowCreate && <WebsiteAddButton teamId={teamId} />}
</PageHeader>
);
}