You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
I'm trying to pass a phone number, it's getting rendered correctly server-side, but not client-side.
Cause:
sapper/runtime/src/app/app.ts
Line 101 in e0de230
Repro: https://github.com/thgh/sapper-template/tree/repro-618
/?phone=+1234
Expected:
$page.query.phone === '+1234'
Actual:
$page.query.phone === ' 1234'
/?phone=%2B1234
Expected:
$page.query.phone === '+1234'
Actual:
$page.query.phone === ' 1234'
The text was updated successfully, but these errors were encountered: