-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #961 from input-output-hk/fix/use-correct-extensio…
…n-id fix: use correct extension ID
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/api/migration-tool/cross-extension-messaging/nami/environment.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import secrets from '../../../../config/provider'; | ||
|
||
if (secrets.LACE_EXTENSION_ID === undefined) { | ||
throw new Error('process.env.LACE_EXTENSION_ID must be defined'); | ||
throw new Error('LACE_EXTENSION_ID must be defined'); | ||
} | ||
export const LACE_EXTENSION_ID = secrets.LACE_EXTENSION_ID; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters