Skip to content

Commit

Permalink
Merge pull request #6 from codebarista/main
Browse files Browse the repository at this point in the history
Fix TypeError: Cannot read properties of undefined (reading 'useLocalization')
  • Loading branch information
stepanenko3 authored Dec 15, 2024
2 parents b3776a7 + 7da3b7e commit 8978c92
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "MIT",
"require": {
"php": ">=8.0",
"laravel/nova": "^4.0",
"laravel/nova": "^4.0|^5.0",
"spatie/cpu-load-health-check": "^1.0",
"spatie/laravel-health": "^1.9",
"spatie/ssl-certificate": "^2.6"
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tool.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions resources/js/pages/Tool.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@

<script setup lang="ts">
import { defineProps, onMounted, ref } from "vue";
import { useLocalization } from "LaravelNova";
defineProps<{
card: {
Expand All @@ -185,8 +184,6 @@ defineProps<{
};
}>();
const { __ } = useLocalization();
const loading = ref<boolean>(false);
const checks = ref<any[]>([]);
const finishedAt = ref<string | null>(null);
Expand Down

0 comments on commit 8978c92

Please sign in to comment.