Changed route ids to be more explicit.
This commit is contained in:
9
src/app/(main)/settings/users/[userId]/page.tsx
Normal file
9
src/app/(main)/settings/users/[userId]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import UserSettings from './UserSettings';
|
||||
|
||||
export default function ({ params: { userId } }) {
|
||||
if (process.env.cloudMode) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return <UserSettings userId={userId} />;
|
||||
}
|
||||
Reference in New Issue
Block a user