Skip to content

Commit

Permalink
fix(nuxt-ripple): 🐛 enable external redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingallday committed Oct 6, 2023
1 parent 6676376 commit 6c0e489
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/nuxt-ripple/composables/use-tide-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ export const useTidePage = async (
case '305':
case '307':
await navigateTo(data.value.redirect_url, {
redirectCode: data.value.status_code
redirectCode: data.value.status_code,
external: data.value.redirect_type === 'external'
})
break
default:
Expand Down

0 comments on commit 6c0e489

Please sign in to comment.