Skip to content

Commit

Permalink
fix: subnet redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
EdSDR committed Oct 15, 2024
1 parent 014e8b6 commit fcc3392
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default async function SubnetPage({ params }: Params) {
notFound();
}

const sbnt = await api.subnet.byId({ id: Number(id) });
const sbnt = await api.subnet.byId({ id: Number(id) + 1 });

if (!sbnt) {
notFound();
Expand Down

0 comments on commit fcc3392

Please sign in to comment.