fix: typo
This commit is contained in:
parent
c367992116
commit
9868ab61c9
|
@ -192,7 +192,7 @@ IDS4_ISSUER=
|
||||||
|
|
||||||
# Kakao
|
# Kakao
|
||||||
NEXT_PUBLIC_KAKAO_ENABLED=
|
NEXT_PUBLIC_KAKAO_ENABLED=
|
||||||
KAOKAO_CUSTOM_NAME=
|
KAKAO_CUSTOM_NAME=
|
||||||
KAKAO_CLIENT_ID=
|
KAKAO_CLIENT_ID=
|
||||||
KAKAO_CLIENT_SECRET=
|
KAKAO_CLIENT_SECRET=
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,7 @@ export function getLogins() {
|
||||||
}
|
}
|
||||||
// Kakao
|
// Kakao
|
||||||
if (process.env.NEXT_PUBLIC_KAKAO_ENABLED === 'true') {
|
if (process.env.NEXT_PUBLIC_KAKAO_ENABLED === 'true') {
|
||||||
buttonAuths.push({method: 'kakao', name: process.env.KAOKAO_CUSTOM_NAME ?? 'Kakao'});
|
buttonAuths.push({method: 'kakao', name: process.env.KAKAO_CUSTOM_NAME ?? 'Kakao'});
|
||||||
}
|
}
|
||||||
// Keycloak
|
// Keycloak
|
||||||
if (process.env.NEXT_PUBLIC_KEYCLOAK_ENABLED === 'true') {
|
if (process.env.NEXT_PUBLIC_KEYCLOAK_ENABLED === 'true') {
|
||||||
|
|
|
@ -200,7 +200,7 @@ declare global {
|
||||||
|
|
||||||
// Kakao
|
// Kakao
|
||||||
NEXT_PUBLIC_KAKAO_ENABLED?: string;
|
NEXT_PUBLIC_KAKAO_ENABLED?: string;
|
||||||
KAOKAO_CUSTOM_NAME?: string;
|
KAKAO_CUSTOM_NAME?: string;
|
||||||
KAKAO_CLIENT_ID?: string;
|
KAKAO_CLIENT_ID?: string;
|
||||||
KAKAO_CLIENT_SECRET?: string;
|
KAKAO_CLIENT_SECRET?: string;
|
||||||
|
|
||||||
|
|
Ŝarĝante…
Reference in New Issue