fix mini ranking showing error msg when loading
Some checks failed
Deploy Website / deploy (push) Failing after 1m42s
Some checks failed
Deploy Website / deploy (push) Failing after 1m42s
This commit is contained in:
parent
98e8273c07
commit
c73f5c6373
@ -114,11 +114,11 @@ export default function Mini({ type, player, shouldUpdate }: MiniProps) {
|
||||
enabled: shouldUpdate,
|
||||
});
|
||||
|
||||
if (isLoading) {
|
||||
if (isLoading || !data) {
|
||||
return <PlayerRankingSkeleton />;
|
||||
}
|
||||
|
||||
if (isError || !data) {
|
||||
if (isError) {
|
||||
return <p className="text-red-500">Error loading ranking</p>;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user