We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e84ca commit 9301d95Copy full SHA for 9301d95
extension-files/bringweb3-sdk/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@emurgo/bringweb3-chrome-extension-kit",
3
- "version": "1.5.1-fix.2",
+ "version": "1.5.1-fix.3",
4
"description": "Crypto cashback integration kit for crypto outlets extension",
5
"main": "dist/index.js",
6
"module": "dist/index.mjs",
extension-files/bringweb3-sdk/utils/getVersion.ts
@@ -2,7 +2,7 @@ import pJson from '../package.json'
import { ENV_VERSION } from './config'
const getVersion = (): string => {
- return ENV_VERSION || pJson.version
+ return (ENV_VERSION || pJson.version).split('-')[0] as string
}
7
8
export default getVersion
0 commit comments