feat(auth): rename external ids to asid psid
This commit is contained in:
@@ -13,8 +13,8 @@ const log = new Logger("ExternalEntryPersist");
|
||||
|
||||
interface ExternalEntryPersistProps {
|
||||
deviceId: string | null;
|
||||
facebookId: string | null;
|
||||
facebookAppId: string | null;
|
||||
asid: string | null;
|
||||
psid: string | null;
|
||||
avatarUrl: string | null;
|
||||
target: string | null;
|
||||
redirect: string | null;
|
||||
@@ -23,8 +23,8 @@ interface ExternalEntryPersistProps {
|
||||
|
||||
export default function ExternalEntryPersist({
|
||||
deviceId,
|
||||
facebookId,
|
||||
facebookAppId,
|
||||
asid,
|
||||
psid,
|
||||
avatarUrl,
|
||||
target,
|
||||
redirect,
|
||||
@@ -43,8 +43,8 @@ export default function ExternalEntryPersist({
|
||||
try {
|
||||
await persistExternalEntryPayload({
|
||||
deviceId,
|
||||
facebookId,
|
||||
facebookAppId,
|
||||
asid,
|
||||
psid,
|
||||
avatarUrl,
|
||||
});
|
||||
} catch (error) {
|
||||
@@ -55,10 +55,10 @@ export default function ExternalEntryPersist({
|
||||
})();
|
||||
}, [
|
||||
avatarUrl,
|
||||
asid,
|
||||
deviceId,
|
||||
facebookAppId,
|
||||
facebookId,
|
||||
next,
|
||||
psid,
|
||||
redirect,
|
||||
router,
|
||||
target,
|
||||
|
||||
Reference in New Issue
Block a user