Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DaKingKong committed Jun 26, 2024
1 parent b67eb46 commit 717f5da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/embedded/welcomeScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export default () => {
}
const isFirstTime = await chrome.storage.local.get('isFirstTime');
if (isObjectEmpty(isFirstTime) && platformName !== '') {
setIsOpen(true);
setDocLink(manifest.platforms[platformName].embeddedOnCrmPage.welcomePage.docLink);
setVideoLink(manifest.platforms[platformName].embeddedOnCrmPage.welcomePage.videoLink);
setIsOpen(true);
await chrome.storage.local.set({ isFirstTime: false });
trackFirstTimeSetup();
}
Expand Down Expand Up @@ -132,7 +132,7 @@ export default () => {
<RcTypography
variant='body1'
>
By {manifest.author}
By {manifest?.author?.name}
</RcTypography>
<br />
<div style={logoContainerStyle}>
Expand Down

0 comments on commit 717f5da

Please sign in to comment.