Skip to content

Commit 28784aa

Browse files
There seems to be no message provided alongside your request. If you'd like me to create a commit message based on the provided information, could you clarify which changes from the diff or context you would like summarized?
1 parent c30562b commit 28784aa

10 files changed

Lines changed: 230 additions & 225 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ phpstan.neon
2323
/.nova
2424
/.vscode
2525
/.zed
26-
26+
.rnd
2727
.claude/settings.local.json

.rnd

-1 KB
Binary file not shown.

composer.lock

Lines changed: 209 additions & 208 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

database/seeders/DatabaseSeeder.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Database\Seeders;
44

5-
use App\Models\Admin;
65
use App\Models\User;
76
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
87
use Illuminate\Database\Seeder;
@@ -16,11 +15,6 @@ public function run(): void
1615
{
1716
// User::factory(10)->create();
1817

19-
Admin::factory()->create([
20-
'name' => 'Test Admin',
21-
'email' => 'admin@filakit.com',
22-
]);
23-
2418
User::factory()->create([
2519
'name' => 'Test User',
2620
'email' => 'user@filakit.com',

public/vendor/livewire/livewire.esm.js

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

public/vendor/livewire/livewire.esm.js.map

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

public/vendor/livewire/livewire.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,11 @@
397397
return diffs;
398398
}
399399
let leftKeys = Object.keys(left);
400+
let rightKeys = Object.keys(right);
401+
if (isObject(left) && leftKeys.length === rightKeys.length && leftKeys.some((key, i) => key !== rightKeys[i])) {
402+
diffs[path] = right;
403+
return diffs;
404+
}
400405
Object.entries(right).forEach(([key, value]) => {
401406
diffs = { ...diffs, ...diff(left[key], right[key], diffs, path === "" ? key : `${path}.${key}`) };
402407
leftKeys = leftKeys.filter((i) => i !== key);

public/vendor/livewire/livewire.min.js

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

public/vendor/livewire/livewire.min.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
{"/livewire.js":"40a765a4"}
2+
{"/livewire.js":"57eb113f"}

0 commit comments

Comments
 (0)