From 129bf68c323275ea05d73907d39cafd5c6e34778 Mon Sep 17 00:00:00 2001 From: Jan Michek <15363559+janmichek@users.noreply.github.com> Date: Fri, 24 May 2024 11:28:55 +0200 Subject: [PATCH] feat: Add ISC license (#789) --- src/utils/constants.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/constants.js b/src/utils/constants.js index f74a6e11e..27f9ab42a 100644 --- a/src/utils/constants.js +++ b/src/utils/constants.js @@ -126,6 +126,7 @@ export const SYNCING_BLOCK_THRESHOLD = 5 export const LICENSE_OPTIONS = [ { label: 'No License', key: 'None' }, + { label: 'ISC License', key: 'ISC' }, { label: 'The Unlicense', key: 'Unlicense' }, { label: 'MIT License', key: 'MIT' }, { label: 'GNU General Public License v2.0', key: 'GNU GPLv2' },