update clerk version in SunoApi.ts

Use a Clerk version released before fraud detection was implemented
This commit is contained in:
Bhushan Rathod 2024-11-25 17:20:36 +05:30 committed by GitHub
parent 419a88e33a
commit edd8322f9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,9 @@ class SunoApi {
); );
} }
// Save clerk version ID for auth // Save clerk version ID for auth
this.clerkVersion = versionListResponse?.data?.['tags']['latest']; // this.clerkVersion = versionListResponse?.data?.['tags']['latest'];
// Use a Clerk version released before fraud detection was implemented
this.clerkVersion = "5.34.0";
} }
/** /**