mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
use const instead of let
This commit is contained in:
parent
cdef752a81
commit
cf582df406
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ export const AppleIdButton = (props: AppleLoginProps) => {
|
|||
e.preventDefault();
|
||||
}
|
||||
|
||||
let url = new URL(`https://appleid.apple.com/auth/authorize`)
|
||||
const url = new URL(`https://appleid.apple.com/auth/authorize`)
|
||||
url.searchParams.append('response_type', responseType)
|
||||
url.searchParams.append('response_mode', responseMode)
|
||||
url.searchParams.append('client_id', clientId)
|
||||
|
|
|
|||
Loading…
Reference in a new issue