Skip to content

Commit

Permalink
fix(webapp): Only scroll the video list instead of full profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
Tastyep committed Dec 21, 2024
1 parent ef1de6f commit a32148f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/views/profile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect } from "react";

import { Box, Divider, Stack, Tabs, Tab, Typography } from "@mui/material";
import { Box, Divider, Stack, Typography } from "@mui/material";

import { observer } from "mobx-react-lite";

Expand Down Expand Up @@ -31,7 +31,7 @@ const ProfilePage = observer(() => {
}, [store]);

return (
<Stack direction="column">
<Stack direction="column" sx={{ width: "100%" }}>
<Typography variant="h6" sx={{ paddingTop: "32px" }}>
Recent activity
</Typography>
Expand Down

0 comments on commit a32148f

Please sign in to comment.