Skip to content

Commit

Permalink
fix: disabled coming soon buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
fluid-design-io committed Oct 18, 2023
1 parent 133f736 commit 706ccbd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/web/components/toolbar/download-base-palette.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ function ToolbarDownloadBasePalette() {
const menuItem = primaryToolbarMenu.Download;
return (
<Dialog>
<DialogTrigger>
{/* //TODO Add function */}
<DialogTrigger disabled>
<DesktopPreviewToolbarIcon {...menuItem} />
</DialogTrigger>
<DialogContent>
Expand Down
3 changes: 2 additions & 1 deletion apps/web/components/toolbar/upload-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ function ToolbarUploadImage() {
const menuItem = primaryToolbarMenu["Upload Image"];
return (
<Dialog>
<DialogTrigger>
{/* //TODO Add function */}
<DialogTrigger disabled>
<DesktopPreviewToolbarIcon {...menuItem} />
</DialogTrigger>
<DialogContent>
Expand Down

0 comments on commit 706ccbd

Please sign in to comment.