Skip to content

Commit 5575683

Browse files
committed
last fix?...
1 parent c51e343 commit 5575683

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

eslint.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ export default typescriptEslint.config(
1616
languageOptions: {
1717
ecmaVersion: 'latest',
1818
sourceType: 'module',
19+
globals: {
20+
...globals.browser,
21+
process: 'readonly',
22+
module: 'readonly',
23+
require: 'readonly',
24+
Ziggy: 'readonly',
25+
window: 'readonly',
26+
},
1927
},
2028
},
2129
{

resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ onMounted(() => {
4848
<div class="space-y-2">
4949
<label for="name">Name</label>
5050
<InputText
51-
ref="name-input"
5251
id="name"
52+
ref="name-input"
5353
v-model="form.name"
5454
type="text"
5555
required

0 commit comments

Comments
 (0)