fix: minor fixes for the frontend
All checks were successful
Build and Deploy Go App / build (push) Successful in 5m46s
Build and Deploy Go App / deploy (push) Successful in 36s

This commit is contained in:
nihonium 2025-12-04 13:01:10 +03:00
parent 3f3cc5c484
commit 5d1d138aca
Signed by: nihonium
GPG key ID: 0251623741027CFC
3 changed files with 7 additions and 5 deletions

View file

@ -96,7 +96,7 @@ export default function UserPage({ userId }: UserPageProps) {
// "all"
// );
if (!result?.data?.data.length) return { items: [], nextCursor: null };
if (!result?.data?.data?.length) return { items: [], nextCursor: null };
return { items: result.data?.data, nextCursor: result.data?.cursor ?? null };
} catch (err: any) {