fix: migration function

This commit is contained in:
prafull-opensignlabs
2024-07-17 15:13:14 +05:30
parent f7087dfb29
commit 1eafc113e6
6 changed files with 31 additions and 48 deletions
File diff suppressed because one or more lines are too long
+3
View File
@@ -106,6 +106,9 @@ const AddUser = (props) => {
objectId: localUser.OrganizationId.objectId
});
}
if (localUser && localUser.Company) {
extUser.set("Company", localUser.Company);
}
if (localStorage.getItem("TenantId")) {
extUser.set("TenantId", {
@@ -1,11 +0,0 @@
import React from "react";
const PremiumAlertHeader = ({ message }) => (
<marquee className="bg-yellow-300 text-black px-2">
{message
? message
: "Currently free in Beta, this feature will incur a fee later."}
</marquee>
);
export default PremiumAlertHeader;