fix: made migartion idempotent and fixed docker-compose

This commit is contained in:
Anish Sarkar 2026-01-15 13:26:23 +05:30
parent 32b8bb33f9
commit 35392c8e62
4 changed files with 65 additions and 7 deletions

View file

@ -44,7 +44,7 @@ export function NotificationPopup({
switch (status) {
case "in_progress":
return <Loader2 className="h-4 w-4 text-white animate-spin" />;
return <Loader2 className="h-4 w-4 text-foreground animate-spin" />;
case "completed":
return <CheckCircle2 className="h-4 w-4 text-green-500" />;
case "failed":
@ -73,7 +73,7 @@ export function NotificationPopup({
<ScrollArea className="h-[400px]">
{loading ? (
<div className="flex items-center justify-center py-8">
<Loader2 className="h-5 w-5 animate-spin text-white" />
<Loader2 className="h-5 w-5 animate-spin text-foreground" />
</div>
) : notifications.length === 0 ? (
<div className="flex flex-col items-center justify-center py-8 px-4 text-center">