Skip to content

Commit

Permalink
fix sanity check (#311)
Browse files Browse the repository at this point in the history
* fix sanity check

* remove sanity check flag
  • Loading branch information
m-aboelenein committed Jun 4, 2024
1 parent e35adfd commit cf58d16
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/app/screens/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,12 +316,7 @@ function Home() {

useEffect(() => {
(async () => {
const featLog = localStorage.getItem('featLog');
if (featLog) {
return;
}
localStorage.setItem('featLog', 'true');
getSanityCheck('X-Current-Version');
await getSanityCheck('X-Current-Version');
})();
}, [getSanityCheck]);

Expand Down

0 comments on commit cf58d16

Please sign in to comment.