chatgpt codex: told to improve ux/ui consistently, 5 times
This commit is contained in:
@@ -8,7 +8,13 @@ export default async function UserProfilePage({
|
||||
params: { id: string };
|
||||
}) {
|
||||
return (
|
||||
<Suspense fallback={<div className="p-4">Loading profile…</div>}>
|
||||
<Suspense
|
||||
fallback={
|
||||
<div className="page-container py-6 text-sm text-subtext1">
|
||||
Loading profile…
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<UserProfileContent userId={(await params).id} />
|
||||
</Suspense>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user