Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeannesson committed Oct 15, 2023
1 parent 1419b18 commit b693b01
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions desktop-app/renderer/pages/servers/[slug]/selectedServer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
import { Card } from '@/components/ui/card'
import { Button } from '@/components/ui/button'
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle
} from '@/components/ui/card'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { useToast } from '@/components/ui/use-toast'
import { Server } from '@/lib/localStorage'
import { Server, removeServer, updateServer } from '@/lib/localStorage'
import { standardUrlPartial } from '@/lib/queryParams'
import { useSearchParams } from 'next/navigation'

import { useRouter } from 'next/router'
Expand All @@ -21,7 +32,7 @@ export default function SelectedServer({
}
return (
<Card className="w-[450px]">
{/* <CardHeader>
<CardHeader>
<CardTitle>Selected Server: {server.name}</CardTitle>
<CardDescription>
You can view/edit your server properties here.
Expand Down Expand Up @@ -109,7 +120,7 @@ export default function SelectedServer({
>
Delete
</Button>
</CardFooter> */}
</CardFooter>
</Card>
)
}

0 comments on commit b693b01

Please sign in to comment.