remove warnings due to type checks

This commit is contained in:
isUnknown 2025-09-09 09:37:34 +02:00
parent ff4f62870f
commit 6291f3259a
7 changed files with 63 additions and 56 deletions

View file

@ -39,16 +39,16 @@
</template>
<script setup>
import dayjs from "dayjs";
import "dayjs/locale/fr";
import { useProjectStore } from "../../stores/project";
import dayjs from 'dayjs';
import 'dayjs/locale/fr';
import { useProjectStore } from '../../stores/project';
dayjs.locale("fr");
dayjs.locale('fr');
const { project } = defineProps({ project: Array });
const { project } = defineProps({ project: Object });
const frenchFormattedModified = dayjs(project.modified).format(
"dddd D MMMM YYYY"
'dddd D MMMM YYYY'
);
const { stepsLabels, setStatus, isEmptyBrief } = useProjectStore();