Fixed error prompt in dashboard

This commit is contained in:
keannu125 2023-05-19 15:57:00 +08:00
parent 825c10d6a7
commit 9d6a1ec2ca

View file

@ -51,19 +51,21 @@ export default function Dashboard() {
</div> </div>
); );
} }
if (logs.error || products.error || lowest_stock_product.isError) { if (logs.isError || products.isError || lowest_stock_product.isError) {
<div> return (
<LoginChecker /> <div>
<div style={styles.flex_row}> <LoginChecker />
<HomeIcon size={64} color="white" /> <div style={styles.flex_row}>
<p style={{ ...styles.text_white, ...styles.text_XL }}>Dashboard</p> <HomeIcon size={64} color="white" />
<p style={{ ...styles.text_white, ...styles.text_XL }}>Dashboard</p>
</div>
<div style={{ ...styles.content_column, ...{ alignItems: "center" } }}>
<p style={{ ...styles.text_red, ...styles.text_L }}>
Error loading dashboard
</p>
</div>
</div> </div>
<div style={{ ...styles.content_column, ...{ alignItems: "center" } }}> );
<p style={{ ...styles.text_red, ...styles.text_L }}>
Error loading dashboard
</p>
</div>
</div>;
} }
return ( return (
<div> <div>