Skip to content

Commit

Permalink
Fix nagivating from apps > detail (#1122)
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin authored Oct 21, 2024
2 parents 01ea753 + 22d2cb5 commit 48c35b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/apps/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default async function PluginDetailView({ params }: { params: { id: strin
<div className="container mx-auto p-4">
<div className="mb-6 flex items-center justify-between">
<Link
href="/dashboard"
href="/apps"
className="flex items-center text-gray-600 transition-colors hover:text-gray-800 dark:text-gray-300 dark:hover:text-white"
>
<ArrowLeft className="mr-2" />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/apps/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function PluginCard({ plugin, stat }: { plugin: Plugin, stat?: PluginStat }) {
</div>
</div>
<Button className="w-full bg-black text-white hover:bg-gray-800" asChild>
<Link href={`/dashboard/${plugin.id}`}>View Info</Link>
<Link href={`/apps/${plugin.id}`}>View Info</Link>
</Button>
</div>
</div>
Expand Down

0 comments on commit 48c35b1

Please sign in to comment.