Skip to content

Commit

Permalink
Issue #215595 fix: ALL-1.0 interation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gouravmore committed Mar 19, 2024
1 parent 9318d63 commit fb7725c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ yarn-debug.log*
yarn-error.log*
lerna-debug.log*

#env
.env
#build
build

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

Expand Down
6 changes: 3 additions & 3 deletions src/components/Assesment/Assesment.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export const ProfileHeader = ({
alignItems: "center",
}}
>
<Box sx={{ position: "relative" }}>
{/* <Box sx={{ position: "relative" }}>
<img
src={scoreView}
alt="scoreView"
Expand All @@ -291,7 +291,7 @@ export const ProfileHeader = ({
{points}
</span>
</Box>
</Box>
</Box> */}

<Box mr={"90px"} onClick={() => setOpenLangModal(true)}>
<Box sx={{ position: "relative", cursor: "pointer" }}>
Expand Down Expand Up @@ -340,7 +340,7 @@ const Assesment = ({ discoverStart }) => {
setLocalData("lang", lang);
dispatch(setVirtualId(localStorage.getItem('virtualId')));
let session_id = localStorage.setItem("sessionId", localStorage.getItem('contentSessionId'));
if (discoverStart && username) {
if (discoverStart && username && !localStorage.getItem('token')) {
(async () => {
setLocalData("profileName", username);
const usernameDetails = await axios.get(
Expand Down
12 changes: 6 additions & 6 deletions src/utils/constants.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fb7725c

Please sign in to comment.