Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
RoccoSmit committed Oct 12, 2024
1 parent b67a1bd commit 234582d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
7 changes: 1 addition & 6 deletions web/src/components/ExploreSidebar/ExploreSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,7 @@ const ExploreSidebar = (props: Props) => {
);

return (
<aside
className={clsx(
"relative w-full h-auto overflow-auto hide-scrollbar flex flex-col justify-start items-start",
props.className,
)}
>
<aside className={clsx("relative w-full h-auto overflow-auto hide-scrollbar flex flex-col justify-start items-start", props.className)}>
<SearchBar />
<TagsSection readonly={true} />
</aside>
Expand Down
7 changes: 1 addition & 6 deletions web/src/components/HomeSidebar/HomeSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,7 @@ const HomeSidebar = (props: Props) => {
);

return (
<aside
className={clsx(
"relative w-full h-auto overflow-auto hide-scrollbar flex flex-col justify-start items-start",
props.className,
)}
>
<aside className={clsx("relative w-full h-auto overflow-auto hide-scrollbar flex flex-col justify-start items-start", props.className)}>
<SearchBar />
<UserStatisticsView />
<TagsSection />
Expand Down
7 changes: 1 addition & 6 deletions web/src/components/MemoDetailSidebar/MemoDetailSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,7 @@ const MemoDetailSidebar = ({ memo, className }: Props) => {
const hasSpecialProperty = property.hasLink || property.hasTaskList || property.hasCode || property.hasIncompleteTasks;

return (
<aside
className={clsx(
"relative w-full h-auto overflow-auto hide-scrollbar flex flex-col justify-start items-start",
className,
)}
>
<aside className={clsx("relative w-full h-auto overflow-auto hide-scrollbar flex flex-col justify-start items-start", className)}>
<div className="flex flex-col justify-start items-start w-full mt-1 px-1 gap-2 h-auto shrink-0 flex-nowrap hide-scrollbar">
<div className="w-full flex flex-col">
<p className="flex flex-row justify-start items-center w-full gap-1 mb-1 text-sm leading-6 text-gray-400 dark:text-gray-500 select-none">
Expand Down

0 comments on commit 234582d

Please sign in to comment.