We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08e1271 commit a3c6ae9Copy full SHA for a3c6ae9
recipes/gmail.tsx
@@ -170,9 +170,9 @@ const updateLimit = handler({
170
state.limit.set(parseInt(detail?.value ?? "100") || 0);
171
});
172
173
-const refreshAuthToken = async (auth: Auth) => {
+const refreshAuthToken = async (auth: Cell<Auth>) => {
174
const body = {
175
- refreshToken: auth.refreshToken,
+ refreshToken: auth.get().refreshToken,
176
};
177
178
console.log("refreshAuthToken", body);
0 commit comments