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 8696107 commit ef38496Copy full SHA for ef38496
extension/src/setup/studio.ts
@@ -14,7 +14,9 @@ export const isStudioAccessToken = (text?: string): boolean => {
14
if (!text) {
15
return false
16
}
17
- return text.startsWith('isat_') && text.length >= 53
+ return (
18
+ (text.startsWith('isat_') || text.startsWith('dsat_')) && text.length >= 53
19
+ )
20
21
22
export class Studio extends Disposable {
0 commit comments