Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
francoism90 committed May 3, 2024
1 parent fa32ccf commit b9dcc1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/Forms/Concerns/WithSession.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

trait WithSession
{
use WithHash;

protected static bool $store = false;

public function restore(): void
Expand Down
2 changes: 2 additions & 0 deletions src/Forms/Support/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@
use Foxws\WireUse\Forms\Concerns\WithThrottle;
use Foxws\WireUse\Forms\Concerns\WithValidation;
use Foxws\WireUse\Support\Concerns\WithHooks;
use Foxws\WireUse\Views\Concerns\WithHash;
use Illuminate\Support\Collection;
use Illuminate\Support\Fluent;
use Livewire\Form as BaseForm;

abstract class Form extends BaseForm
{
use WithAuthorization;
use WithHash;
use WithHooks;
use WithSession;
use WithThrottle;
Expand Down
2 changes: 1 addition & 1 deletion src/Navigation/Concerns/WithTabs.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

trait WithTabs
{
protected function currentTab(): mixed
protected function currentTab(): ?Action
{
$key = $this->getPropertyValue(
$this->getTabPath()
Expand Down

0 comments on commit b9dcc1a

Please sign in to comment.