We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cccc288 commit dc30252Copy full SHA for dc30252
src/pages/AdvancedGamificationAnalytics.jsx
@@ -275,9 +275,17 @@ export default function AdvancedGamificationAnalytics() {
275
</TabsContent>
276
277
<TabsContent value="abtesting" className="space-y-6">
278
- <div className="grid grid-cols-2 gap-6">
279
- <ABTestingFramework />
280
- </div>
+ {activeABTests === 0 && recentExecutions.length === 0 ? (
+ <Card className="bg-slate-900 border-slate-800">
+ <CardContent className="py-12 text-center">
281
+ <p className="text-slate-400">No A/B tests running yet</p>
282
+ </CardContent>
283
+ </Card>
284
+ ) : (
285
+ <div className="grid grid-cols-2 gap-6">
286
+ <ABTestingFramework />
287
+ </div>
288
+ )}
289
290
291
<TabsContent value="ai" className="space-y-6">
0 commit comments