fix(SW-1710): use access object references instead
correct incorrect test that granted access incorrectly
This commit is contained in:
@@ -10,7 +10,7 @@ export default async function MyStayPage({
|
||||
}: PageArgs<LangParams & { refId: string }>) {
|
||||
return (
|
||||
<Suspense fallback={<MyStaySkeleton />}>
|
||||
<MyStay refId={params.refId} />
|
||||
<MyStay refId={decodeURIComponent(params.refId)} />
|
||||
</Suspense>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user