We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68d15e3 commit 07b5839Copy full SHA for 07b5839
mobile/redux/features/linkingSlice.ts
@@ -16,8 +16,8 @@ const initialState: State = {
16
17
export const requestLoginForGnokeyMobile = createAsyncThunk<boolean>("tx/requestLoginForGnokeyMobile", async () => {
18
console.log("requesting login for GnokeyMobile");
19
- const callback = encodeURIComponent('tech.berty.dsocial://login-callback');
20
- return await Linking.openURL(`land.gno.gnokey://tologin?callback=${callback}`);
+ const callback = encodeURIComponent('tech.berty.dsocial://signin-callback');
+ return await Linking.openURL(`land.gno.gnokey://tosignin?callback=${callback}`);
21
})
22
23
type MakeTxAndRedirectParams = {
0 commit comments