fix: handled default view on plane deploy (#1893)

* fix: handled default view on plane deploy

* fix: handled default view on refresh
This commit is contained in:
guru_sainath 2023-08-17 14:24:33 +05:30 committed by GitHub
parent 0afd72db95
commit abb8782c44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 12 deletions

View file

@ -24,11 +24,6 @@ const MobxStoreInit = () => {
else localStorage.setItem("app_theme", _theme && _theme != "light" ? "dark" : "light");
}, [store?.theme]);
// updating default board view when we are in the issues page
useEffect(() => {
if (board && board != store?.issue?.currentIssueBoardView) store.issue.setCurrentIssueBoardView(board);
}, [board, store?.issue]);
return <></>;
};