fix: resolve Binance Pay TypeScript strict type error

This commit is contained in:
Hamza-Ayed
2026-07-15 15:51:55 +03:00
parent a39dfe1aaa
commit 0bb609d5a2
@@ -11,11 +11,11 @@ export class BinanceProvider {
constructor(private configService: ConfigService) {}
private get apiKey(): string {
return this.configService.get<string>('BINANCE_PAY_API_KEY');
return this.configService.get<string>('BINANCE_PAY_API_KEY') || '';
}
private get secretKey(): string {
return this.configService.get<string>('BINANCE_PAY_SECRET_KEY');
return this.configService.get<string>('BINANCE_PAY_SECRET_KEY') || '';
}
/**