We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 323788b commit 573d88eCopy full SHA for 573d88e
1 file changed
src/main.tsx
@@ -44,15 +44,6 @@ function App() {
44
const { ready, authConfig } = useAppContext();
45
const { theme } = useTheme();
46
47
- // prevent scroll via ontouchmove, e.g. if virtual keyboard is opened
48
- document.documentElement.addEventListener(
49
- "touchmove",
50
- function (e) {
51
- e.preventDefault();
52
- },
53
- { passive: false },
54
- );
55
-
56
useEffect(() => {
57
const color = theme === "dark" ? "#161618" : "#f5f5f5";
58
0 commit comments