Skip to content

Commit

Permalink
re-organize view files
Browse files Browse the repository at this point in the history
  • Loading branch information
danilopolani committed Apr 15, 2024
1 parent 7312ae5 commit c8d6f19
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class="filament-peek-rotate-preset"
@endif

<div class="filament-peek-modal-actions">
@include('mailcarrier::livewire.preview.partials.modal-actions')
@include('mailcarrier::preview.partials.modal-actions')
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/Preview/PreviewBuilderEditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public function render(): ViewContract
{
parent::render();

return view('mailcarrier::livewire.preview.builder-editor');
return view('mailcarrier::preview.builder-editor');
}

public function closeBuilderEditor(): void
Expand Down
2 changes: 1 addition & 1 deletion src/Preview/PreviewPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function register(Panel $panel): void

$panel->renderHook(
'panels::body.end',
fn () => view('mailcarrier::livewire.preview.preview-modal'),
fn () => view('mailcarrier::preview.preview-modal'),
);

if ($this->shouldLoadPluginScripts()) {
Expand Down

0 comments on commit c8d6f19

Please sign in to comment.