Skip to content

Commit

Permalink
SecurityProvider: apply readonly TS
Browse files Browse the repository at this point in the history
  • Loading branch information
digiwand committed Jul 20, 2023
1 parent f68469d commit 04096b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/constants/security-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ type SecurityProviderConfig = Record<
SecurityProvider,
{
/** translation key for security provider name */
tKeyName: string;
readonly tKeyName: string;
/** URL to securty provider website */
url: string;
readonly url: string;
}
>;

export const SECURITY_PROVIDER_CONFIG: SecurityProviderConfig = {
export const SECURITY_PROVIDER_CONFIG: Readonly<SecurityProviderConfig> = {
[SecurityProvider.Blockaid]: {
tKeyName: 'blockaid',
url: 'https://blockaid.io/',
Expand Down

0 comments on commit 04096b2

Please sign in to comment.