Skip to content

Commit 52ba226

Browse files
committed
fixing syntax
1 parent 3643027 commit 52ba226

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"@types/react": "^19.0.3",
1515
"@vitejs/plugin-react": "^4.3.4",
1616
"autoprefixer": "^10.4.20",
17-
"axios": "^1.7.4",
1817
"concurrently": "^9.0.1",
1918
"eslint": "^9.17.0",
2019
"eslint-plugin-react": "^7.37.3",

routes/web.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
use App\Http\Controllers\Settings\DeleteController;
43
use App\Http\Controllers\Settings\PasswordController;
54
use App\Http\Controllers\Settings\ProfileController;
65
use Illuminate\Foundation\Application;
@@ -16,7 +15,7 @@
1615
]);
1716
})->name('home');
1817

19-
Route::get('dashboard', function(){
18+
Route::get('dashboard', function () {
2019
return Inertia::render('dashboard');
2120
})->middleware(['auth', 'verified'])->name('dashboard');
2221

tests/Feature/Settings/ProfileUpdateTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
$this->assertNotNull($user->refresh()->email_verified_at);
5151
});
5252

53-
5453
// Delete Profile Tests
5554

5655
test('user can delete their account', function () {

0 commit comments

Comments
 (0)