Skip to content

Commit

Permalink
Fix missing include in hook-redirection.blade.php (#2870)
Browse files Browse the repository at this point in the history
In commit b560ff5, the `layouts.app` base template was added to
`hook-redirection.blade.php`. However, in commit b156ec4, the base
template was removed, leaving a broken include reference.

This causes commands like `php artisan view:cache` to fail due to
the missing template.

This commit removes the invalid include, restoring the file to its
state prior to b560ff5 and resolving the issue.
  • Loading branch information
kiancross authored Jan 2, 2025
1 parent aaff115 commit 98305ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions resources/views/hook-redirection.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<x-layouts.app>
<div
id="redirectData"
data-gallery="{{ $gallery }}"
Expand All @@ -21,4 +20,3 @@
window.location = base;
}
</script>
</x-layouts.app>

0 comments on commit 98305ff

Please sign in to comment.