Skip to content

Commit

Permalink
bug fix: removed redundant css line
Browse files Browse the repository at this point in the history
  • Loading branch information
arandel1 committed Oct 21, 2024
1 parent c0181e3 commit 2fc3775
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true
}
2 changes: 1 addition & 1 deletion src/views/List.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export function List({ data, userId, path }) {
{filterVal && <button>Clear</button>}
</form>
<div className="flex flex-col h-[60vh] my-8 p-8 rounded-3xl shadow-xl overflow-hidden mx-auto bg-neutral">
<ul className="space-y-2 font-archivo flex-grow overflow-y-auto space-y-4 ">
<ul className="space-y-2 font-archivo flex-grow overflow-y-auto">
{filteredObject &&
Object.entries(filteredObject).map(([timeBucket, list]) => (
<div
Expand Down

0 comments on commit 2fc3775

Please sign in to comment.