merge updates

This commit is contained in:
Abi Raja 2024-07-30 10:12:41 -04:00
parent 13d3ff6e38
commit 8d1f76abec
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
import { useStore } from "../store/store";
import { useStore } from "../../store/store";
export function OnboardingNote() {
const setPricingDialogOpen = useStore((state) => state.setPricingDialogOpen);

View File

@ -1,4 +1,4 @@
import PricingDialog from "./hosted/payments/PricingDialog";
import PricingDialog from "../hosted/payments/PricingDialog";
export function PicoBadge() {
return (

View File

@ -4,8 +4,8 @@ import { History } from "../components/history/history_types";
// Store for app-wide state
interface ProjectStore {
// Inputs
inputMode: "image" | "video";
setInputMode: (mode: "image" | "video") => void;
inputMode: "image" | "video" | "text";
setInputMode: (mode: "image" | "video" | "text") => void;
isImportedFromCode: boolean;
setIsImportedFromCode: (imported: boolean) => void;
referenceImages: string[];