Skip to content

Commit 97fdbdc

Browse files
committed
chore: lint
1 parent 3049a7c commit 97fdbdc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

services/libs/common_services/src/services/integration.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class CommonIntegrationService {
1111
private static safeDecrypt(encryptedValue: string): string {
1212
try {
1313
return decryptData(encryptedValue)
14-
} catch (error: any) {
14+
} catch (error) {
1515
CommonIntegrationService.log.warn(`Failed to decrypt value: ${error?.message || error}`)
1616
return encryptedValue
1717
}
@@ -23,7 +23,7 @@ export class CommonIntegrationService {
2323
* @param settings - The settings object that may contain encrypted fields
2424
* @returns Settings object with decrypted values
2525
*/
26-
public static decryptIntegrationSettings(platform: string, settings: any): any {
26+
public static decryptIntegrationSettings(platform: string, settings) {
2727
if (!settings) return settings
2828

2929
switch (platform) {

0 commit comments

Comments
 (0)