Abdul Rahman
2026-05-20 15:51:22 +05:30
committed by GitHub
parent a26fe3bb65
commit c800eccc65
54 changed files with 6572 additions and 53 deletions
@@ -4,5 +4,5 @@
export type AppOAuthTokens = {
accessToken: string;
refreshToken: string;
refreshToken: string | null;
};
@@ -207,7 +207,7 @@ export class ApplicationConnectionsListService {
}
try {
const tokens = await this.refreshTokensService.refreshAndSaveTokens(
const tokens = await this.refreshTokensService.resolveTokens(
account,
workspaceId,
);