Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/pages/dashboard/AppCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { LayoutGrid, ExternalLink, Smartphone, ArrowUpRight, Shield, CircleSlash } from "lucide-react"
import { LayoutGrid, Globe, Apple, Smartphone, ArrowUpRight, Shield, CircleSlash } from "lucide-react"
import type { UserAppResponse } from "@/types"
import { cn } from "@/utils/cn"
import { Badge } from "@/components/ui/badge"
Expand Down Expand Up @@ -95,7 +95,7 @@ export function AppCard({ app }: { app: UserAppResponse }) {
rel="noopener noreferrer"
className={cn(buttonVariants({ size: "sm" }), "gap-1.5")}
>
<ExternalLink className="h-3.5 w-3.5" />
<Globe className="h-3.5 w-3.5" />
Launch
</a>
)}
Expand All @@ -106,7 +106,7 @@ export function AppCard({ app }: { app: UserAppResponse }) {
rel="noopener noreferrer"
className={cn(buttonVariants({ variant: "outline", size: "sm" }), "gap-1.5")}
>
<Smartphone className="h-3.5 w-3.5" />
<Apple className="h-3.5 w-3.5" />
iOS
</a>
)}
Expand Down
Loading