Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Removed !! from the full_page_redirect breaking authenticate route #1222

Merged
merged 2 commits into from
Oct 4, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/resources/views/auth/fullpage_redirect.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
var createApp = AppBridge.default;
var Redirect = AppBridge.actions.Redirect;
var app = createApp({
apiKey: "{{!! $apiKey !!}}",
shopOrigin: "{{!! $shopOrigin !!}}",
host: "{{!! $host !!}}",
apiKey: "{{ $apiKey }}",
shopOrigin: "{{ $shopOrigin }}",
host: "{{ $host }}",
});

var redirect = Redirect.create(app);
Expand Down