Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zaknesler committed May 8, 2024
1 parent 48c3f94 commit aee61f5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 18 deletions.
4 changes: 1 addition & 3 deletions ui/src/components/entry/entry-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ export const EntryList: Component<EntryListProps> = props => {
<Match when={entries.query.isSuccess && feeds.query.data}>
{entries.getAllEntries().length ? (
<div class="-mt-2 flex flex-col gap-1 px-4 pb-2">
<For each={entries.getAllEntries()}>
{entry => <EntryItem entry={entry} feed={feeds.findFeed(entry.feed_uuid)!} />}
</For>
<For each={entries.getAllEntries()}>{entry => <EntryItem entry={entry} />}</For>

<div ref={setBottomOfList} class="-mt-1" />

Expand Down
14 changes: 0 additions & 14 deletions ui/src/css/app.css

This file was deleted.

2 changes: 1 addition & 1 deletion ui/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SolidQueryDevtools } from '@tanstack/solid-query-devtools';
import { render } from 'solid-js/web';
import 'solid-devtools';
import Router from './router';
import './css/app.css';
import 'tailwindcss/tailwind.css';

const queryClient = new QueryClient();

Expand Down

0 comments on commit aee61f5

Please sign in to comment.