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 178494b commit 6cf82e3Copy full SHA for 6cf82e3
git/gitauth.js
@@ -202,17 +202,27 @@ window.addEventListener('load', async () => {
202
body.classList.add('loaded');
203
204
showMessage('Logging in...', -1);
205
+
206
207
+ // update legacy workflow permission
208
+ setStorage('hasWorkflowPermission', 'true');
209
210
211
const gitCode = linkData.gitCode;
212
213
// get git token from Github
214
await getGithubToken(gitCode);
215
216
217
// clear modified repos
218
modifiedRepos = {};
219
updateModReposLS();
220
- hideMessage();
221
222
+ // hide message
223
+ if (messageEl.textContent === 'Logging in...') {
224
+ hideMessage();
225
+ }
226
227
}
228
@@ -295,4 +305,3 @@ async function getGithubToken(gitCode) {
295
305
296
306
297
307
298
-
0 commit comments