fixed render order bug

This commit is contained in:
Zai Shi 2024-04-16 15:54:18 +02:00
parent 1c93fe13ae
commit 6a0114c431

View File

@ -551,8 +551,9 @@ class _StackClientAppImpl<HasTokenStore extends boolean, ProjectId extends strin
case 'throw': {
throw new Error("User is not signed in but useUser was called with { or: 'throw' }");
}
default: {
return null;
case undefined:
case "return-null": {
// do nothing
}
}
}