Skip to content

Commit b9c8365

Browse files
committed
fix: accidental deploy button rename after theme changes
1 parent 5a5407c commit b9c8365

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

apps/postgres-new/components/sidebar.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ function DatabaseMenuItem({ database, isActive }: DatabaseMenuItemProps) {
273273
<AnimatePresence initial={false}>
274274
{!isOnDeployWaitlist ? (
275275
<button
276-
className="px-4 py-3 bg-black text-white rounded-md"
276+
className="px-4 py-3 bg-foreground text-background rounded-md"
277277
onClick={async () => {
278278
await joinDeployWaitlist()
279279
}}
@@ -399,7 +399,11 @@ function DatabaseMenuItem({ database, isActive }: DatabaseMenuItemProps) {
399399
downloadFile(file)
400400
}}
401401
>
402-
<Download size={16} strokeWidth={2} className="flex-shrink-0" />
402+
<Download
403+
size={16}
404+
strokeWidth={2}
405+
className="flex-shrink-0 text-muted-foreground"
406+
/>
403407

404408
<span>Download</span>
405409
</DropdownMenuItem>
@@ -418,7 +422,7 @@ function DatabaseMenuItem({ database, isActive }: DatabaseMenuItemProps) {
418422
strokeWidth={2}
419423
className="flex-shrink-0 text-muted-foreground"
420424
/>
421-
<span>Publish</span>
425+
<span>Deploy</span>
422426
</DropdownMenuItem>
423427
<DropdownMenuSeparator />
424428
<DropdownMenuItem

0 commit comments

Comments
 (0)