Fix useContent not using cookies therefore skipping the auth step

This commit is contained in:
2025-01-05 22:43:40 +01:00
parent 9515132659
commit 896af11fa7
15 changed files with 37 additions and 39 deletions

View File

@@ -2,8 +2,8 @@
import type { CanvasColor } from "~/types/canvas";
type Direction = 'bottom' | 'top' | 'left' | 'right';
interface Props
{
const props = defineProps<{
path: {
path: string;
from: { x: number; y: number };
@@ -12,8 +12,7 @@ interface Props
};
color?: CanvasColor;
label?: string;
}
const props = defineProps<Props>();
}>();
const rotation: Record<Direction, string> = {
top: "180",