Merge pull request #417 from OpenSignLabs/remove_openai

This commit is contained in:
Amol
2024-02-22 15:31:32 +05:30
committed by GitHub
3 changed files with 9 additions and 6 deletions
+7 -4
View File
@@ -14,7 +14,7 @@
"file-saver": "^2.0.5",
"html-react-parser": "^4.2.2",
"json-rules-engine-simplified": "^0.1.17",
"jwt-decode": "^3.1.2",
"jwt-decode": "^4.0.0",
"mf-cra": "^0.0.5",
"moment": "^2.29.4",
"parse": "^4.3.1",
@@ -13375,9 +13375,12 @@
}
},
"node_modules/jwt-decode": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz",
"integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A=="
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-4.0.0.tgz",
"integrity": "sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==",
"engines": {
"node": ">=18"
}
},
"node_modules/keyv": {
"version": "4.5.4",
+1 -1
View File
@@ -9,7 +9,7 @@
"file-saver": "^2.0.5",
"html-react-parser": "^4.2.2",
"json-rules-engine-simplified": "^0.1.17",
"jwt-decode": "^3.1.2",
"jwt-decode": "^4.0.0",
"mf-cra": "^0.0.5",
"moment": "^2.29.4",
"parse": "^4.3.1",
+1 -1
View File
@@ -1,6 +1,6 @@
import React, { useState, useRef } from "react";
import Parse from "parse";
import jwtDecode from "jwt-decode";
import { jwtDecode } from "jwt-decode";
import { useScript } from "../hook/useScript";
import ModalUi from "../primitives/ModalUi";
import { modalCancelBtnColor, modalSubmitBtnColor } from "../constant/const";