Skip to content

Commit f57c002

Browse files
committed
chore: remove commented code
1 parent d361b9f commit f57c002

File tree

4 files changed

+0
-11
lines changed

4 files changed

+0
-11
lines changed

apps/postgres-new/components/schema/table-graph.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ export default function TablesGraph({
108108
className={cn(
109109
'bg-muted/5 transition-colors',
110110
isLoading || isError || isEmpty ? 'text-secondary-foreground' : 'text-foreground'
111-
// 'text-yellow'
112111
)}
113112
variant={BackgroundVariant.Dots}
114113
size={1}

apps/postgres-new/components/schema/table-node.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,6 @@ function TableColumn({
358358
<DropdownMenuContent
359359
side="right"
360360
align="start"
361-
// className="w-content"
362361
onEscapeKeyDown={(e) => {
363362
if (isRenaming) {
364363
e.preventDefault()

apps/postgres-new/components/sidebar.tsx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -301,14 +301,6 @@ function DatabaseMenuItem({ database, isActive }: DatabaseMenuItemProps) {
301301
href={`/db/${database.id}`}
302302
>
303303
<span className="text-nowrap grow truncate">{database.name ?? 'My database'}</span>
304-
{/* <div
305-
className={cn(
306-
'absolute right-0 top-0 bottom-0',
307-
'w-8 bg-gradient-to-l from-neutral-100 from-0%',
308-
'group-hover:w-16 group-hover:from-neutral-200 group-hover:from-50%',
309-
'group-data-[active=true]:w-16 group-data-[active=true]:from-neutral-200 group-data-[active=true]:from-50%'
310-
)}
311-
/> */}
312304
<DropdownMenu
313305
modal={false}
314306
onOpenChange={(open) => {

apps/postgres-new/tailwind.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export default {
6262
},
6363
fontFamily: {
6464
sans: ['var(--font-sans)', ...fontFamily.sans],
65-
// mono: ["var(--font-mono)", ...fontFamily.mono],
6665
},
6766
keyframes: {
6867
'accordion-down': {

0 commit comments

Comments
 (0)