temp fix channel list

This commit is contained in:
Ren Amamiya
2023-04-24 19:57:40 +07:00
parent 8b80a08a59
commit c88d540b88
2 changed files with 12 additions and 5 deletions

View File

@@ -1,12 +1,20 @@
import { ChannelListItem } from '@components/channels/channelListItem';
import { CreateChannelModal } from '@components/channels/createChannelModal';
import { channelsAtom } from '@stores/channel';
import { channelsAtom, defaultChannelsAtom } from '@stores/channel';
import { useAtomValue } from 'jotai';
export default function ChannelList() {
const list = useAtomValue(channelsAtom);
let atom;
if (typeof window !== 'undefined') {
atom = channelsAtom;
} else {
atom = defaultChannelsAtom;
}
const list: any = useAtomValue(atom);
return (
<div className="flex flex-col gap-px">