1 parent a5e81f3 commit cd5feb3Copy full SHA for cd5feb3
1 file changed
components/shop/shop-content.tsx
@@ -132,6 +132,17 @@ export function ShopContent() {
132
133
{error ? <p className="mb-4 text-sm text-red-500">{error}</p> : null}
134
135
+ {!error && coins !== null && groupedItems.length === 0 ? (
136
+ <Card>
137
+ <CardContent className="pt-6">
138
+ <p className="text-sm text-muted-foreground">
139
+ Nothing in the shop right now. Keep completing habits and daily
140
+ check-ins to earn points for when new styles arrive.
141
+ </p>
142
+ </CardContent>
143
+ </Card>
144
+ ) : null}
145
+
146
<div className="grid gap-6">
147
{groupedItems.map((group) => (
148
<section key={group.layerId} className="grid gap-3">
0 commit comments