Skip to content

Commit

Permalink
Update app/(app)/pools/[chain]/[variant]/[id]/layout.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Gareth Fuller <gareth.a.f@gmail.com>
  • Loading branch information
agualis and garethfuller authored Aug 30, 2024
1 parent 61e0733 commit 3dc07e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/(app)/pools/[chain]/[variant]/[id]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default async function PoolLayout({ params: { id, chain, variant }, child

if (error) {
if (error?.message === 'Pool with id does not exist') {
const error = `Pool with id not found in ${chain} (${id})`
const error = `Pool not found on ${chain}, ID (${id})`
return (
<DefaultPageContainer>
<BalAlert status="error" content={error} ssr />
Expand Down

0 comments on commit 3dc07e2

Please sign in to comment.