refactor: update migrations

This commit is contained in:
Mauricio Siu
2025-01-18 18:29:28 -06:00
parent d5d8064b38
commit ad642ab4e0
22 changed files with 4417 additions and 46 deletions

View File

@@ -133,7 +133,9 @@ export const AddTemplate = ({ projectId }: Props) => {
<PopoverTrigger asChild>
<Button
variant="outline"
className={cn("w-full sm:w-[200px] justify-between !bg-input")}
className={cn(
"w-full sm:w-[200px] justify-between !bg-input",
)}
>
{isLoadingTags
? "Loading...."

View File

@@ -1,7 +1,7 @@
import { CodeEditor } from "@/components/shared/code-editor";
import { Button } from "@/components/ui/button";
import { ScrollArea } from "@/components/ui/scroll-area";
import ReactMarkdown from "react-markdown";
import {CodeEditor} from "@/components/shared/code-editor";
export const StepFour = ({
prevStep,
@@ -76,4 +76,4 @@ export const StepFour = ({
</div>
</div>
);
}
};

View File

@@ -66,4 +66,4 @@ export const StepOne = ({ nextStep, setTemplateInfo, templateInfo }: any) => {
</div>
</div>
);
}
};

View File

@@ -81,4 +81,4 @@ export const StepThree = ({
</div>
</div>
);
}
};

View File

@@ -1,3 +1,4 @@
import { CodeEditor } from "@/components/shared/code-editor";
import {
Accordion,
AccordionContent,
@@ -14,7 +15,6 @@ import { Bot, Eye, EyeOff, PlusCircle, Trash2 } from "lucide-react";
import { useEffect, useState } from "react";
import ReactMarkdown from "react-markdown";
import { toast } from "sonner";
import {CodeEditor} from "@/components/shared/code-editor";
interface EnvVariable {
name: string;
@@ -304,4 +304,4 @@ export const StepTwo = ({
</div>
</div>
);
}
};

View File

@@ -156,4 +156,4 @@ export const TemplateGenerator = ({ projectId }: Props) => {
</DialogContent>
</Dialog>
);
}
};