Skip to content

Commit a40cb52

Browse files
committed
fix(auth): update token issuer URL
- Updated issuer to localhost
1 parent 48ae31c commit a40cb52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/services/jwt_auth_token_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class JwtAuthTokenService implements AuthTokenService {
3333
'your-very-hardcoded-super-secret-key-replace-this-in-prod';
3434

3535
// Define token issuer and default expiry duration
36-
static const String _issuer = 'https://your-api-domain.com'; // Replace
36+
static const String _issuer = 'http://localhost:8080';
3737
static const Duration _tokenExpiryDuration = Duration(hours: 1);
3838

3939
// --- Interface Implementation ---

0 commit comments

Comments
 (0)