Skip to content

Commit

Permalink
chore: remove ts lang on script blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
bencodezen committed Apr 2, 2023
1 parent 1e23cbf commit 5c89e15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/LoginForm.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script setup lang="ts">
<script setup>
const isAuthenticated = useCookie('is-authenticated')
const currentUser = useCookie('current-user')
Expand Down
2 changes: 1 addition & 1 deletion components/TheFooter.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script setup lang="ts"></script>
<script setup></script>

<template>
<footer class="container-fluid">
Expand Down
2 changes: 1 addition & 1 deletion components/TheHeader.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script setup lang="ts"></script>
<script setup></script>

<template>
<nav class="container-fluid">
Expand Down

0 comments on commit 5c89e15

Please sign in to comment.