Skip to content

Commit

Permalink
Merge pull request #42 from supabase-community/fix/deploy-button-regr…
Browse files Browse the repository at this point in the history
…ession

fix: accidental deploy button rename after theme changes
  • Loading branch information
gregnr authored Aug 10, 2024
2 parents 7ff4552 + b9c8365 commit dbd4e3a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions apps/postgres-new/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ function DatabaseMenuItem({ database, isActive }: DatabaseMenuItemProps) {
<AnimatePresence initial={false}>
{!isOnDeployWaitlist ? (
<button
className="px-4 py-3 bg-black text-white rounded-md"
className="px-4 py-3 bg-foreground text-background rounded-md"
onClick={async () => {
await joinDeployWaitlist()
}}
Expand Down Expand Up @@ -399,7 +399,11 @@ function DatabaseMenuItem({ database, isActive }: DatabaseMenuItemProps) {
downloadFile(file)
}}
>
<Download size={16} strokeWidth={2} className="flex-shrink-0" />
<Download
size={16}
strokeWidth={2}
className="flex-shrink-0 text-muted-foreground"
/>

<span>Download</span>
</DropdownMenuItem>
Expand All @@ -418,7 +422,7 @@ function DatabaseMenuItem({ database, isActive }: DatabaseMenuItemProps) {
strokeWidth={2}
className="flex-shrink-0 text-muted-foreground"
/>
<span>Publish</span>
<span>Deploy</span>
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem
Expand Down

0 comments on commit dbd4e3a

Please sign in to comment.