Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pushpak1300 committed Jan 12, 2025
1 parent c204f0c commit f4f1b70
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/WelcomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function home(): Response
'canRegister' => Route::has('register'),
'seo' => [
'title' => 'Home',
]
],
]);
}
}
2 changes: 1 addition & 1 deletion resources/js/Layouts/AppLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const props = defineProps({
})
useSeoMetaTags({
title: props.title,
title: props.title,
})
</script>

Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/PrivacyPolicy.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import AuthenticationCardLogo from '@/Components/LogoRedirect.vue'
import { useSeoMetaTags } from '@/Composables/useSeoMetaTags';
import { useSeoMetaTags } from '@/Composables/useSeoMetaTags'
defineProps({
policy: String,
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/TermsOfService.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import AuthenticationCardLogo from '@/Components/LogoRedirect.vue'
import { useSeoMetaTags } from '@/Composables/useSeoMetaTags';
import { useSeoMetaTags } from '@/Composables/useSeoMetaTags'
defineProps({
terms: String,
Expand Down

0 comments on commit f4f1b70

Please sign in to comment.