merge updates
This commit is contained in:
parent
13d3ff6e38
commit
8d1f76abec
@ -1,4 +1,4 @@
|
||||
import { useStore } from "../store/store";
|
||||
import { useStore } from "../../store/store";
|
||||
|
||||
export function OnboardingNote() {
|
||||
const setPricingDialogOpen = useStore((state) => state.setPricingDialogOpen);
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import PricingDialog from "./hosted/payments/PricingDialog";
|
||||
import PricingDialog from "../hosted/payments/PricingDialog";
|
||||
|
||||
export function PicoBadge() {
|
||||
return (
|
||||
|
||||
@ -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[];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user