mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-16 22:29:24 +08:00
Fixed error prompt in dashboard
This commit is contained in:
parent
825c10d6a7
commit
9d6a1ec2ca
1 changed files with 14 additions and 12 deletions
|
@ -51,7 +51,8 @@ export default function Dashboard() {
|
|||
</div>
|
||||
);
|
||||
}
|
||||
if (logs.error || products.error || lowest_stock_product.isError) {
|
||||
if (logs.isError || products.isError || lowest_stock_product.isError) {
|
||||
return (
|
||||
<div>
|
||||
<LoginChecker />
|
||||
<div style={styles.flex_row}>
|
||||
|
@ -63,7 +64,8 @@ export default function Dashboard() {
|
|||
Error loading dashboard
|
||||
</p>
|
||||
</div>
|
||||
</div>;
|
||||
</div>
|
||||
);
|
||||
}
|
||||
return (
|
||||
<div>
|
||||
|
|
Loading…
Reference in a new issue