Skip to content

Commit 3aaf7d6

Browse files
style: autofix
[skip netlify]
1 parent cdb6404 commit 3aaf7d6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/composables/use-topic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default async (supa: Supa, id: string) => {
7575
.select('*')
7676
.throwOnError();
7777
data.value.tasks.push(...t);
78-
}
78+
};
7979

8080
return { data, syncTopic, syncTimelineNode, addTimelineNode, syncTask, addTasks };
8181
};

app/layouts/default.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ onMounted(async () => {
5858
class="text-2xl bg-transparent!"
5959
to="/"
6060
>
61-
<img class="h-20" src="../assets/brand.png" alt="NextStep" >
61+
<img class="h-20" src="../assets/brand.png" alt="NextStep">
6262
</UButton>
6363
</template>
6464

app/pages/topic/[id].vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import type { CalendarDate } from '@internationalized/date';
33
import type { Tables } from '~/types/database.types';
4-
import { toCalendarDate, getLocalTimeZone, fromDate } from '@internationalized/date';
4+
import { fromDate, getLocalTimeZone, toCalendarDate } from '@internationalized/date';
55
66
const route = useRoute();
77
const supa = useSupabaseClient();
@@ -80,7 +80,7 @@ function onPickDate(node: Tables<'timeline_nodes'>, v: CalendarDate) {
8080
size="sm"
8181
@change="syncTimelineNode(node.id)"
8282
/>
83-
83+
8484
<UButton
8585
icon="i-heroicons-trash"
8686
size="sm"

server/api/request-tasks.post.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import type { Tables } from '~/types/database.types';
12
import process from 'node:process';
23
import { serverSupabaseClient, serverSupabaseUser } from '#supabase/server';
34
import { ChatDeepSeek } from '@langchain/deepseek';
45
import { z } from 'zod';
5-
import { Tables } from '~/types/database.types';
66

77
const Body = z.object({
88
id: z.string().uuid(),

0 commit comments

Comments
 (0)