Move ChatPage into subfolder
This commit is contained in:
parent
4352d17217
commit
acdb89e698
2 changed files with 3 additions and 3 deletions
|
@ -14,8 +14,8 @@ import { useChatContext } from 'soapbox/contexts/chat-context';
|
|||
import { useAppDispatch } from 'soapbox/hooks';
|
||||
import { useChat, useChatSilence } from 'soapbox/queries/chats';
|
||||
|
||||
import Chat from './chat';
|
||||
import ChatList from './chat-list';
|
||||
import Chat from '../chat';
|
||||
import ChatList from '../chat-list';
|
||||
|
||||
const messages = defineMessages({
|
||||
title: { id: 'column.chats', defaultMessage: 'Messages' },
|
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||
|
||||
import { ChatProvider } from 'soapbox/contexts/chat-context';
|
||||
|
||||
import ChatPage from './components/chat-page';
|
||||
import ChatPage from './components/chat-page/chat-page';
|
||||
|
||||
const ChatIndex: React.FC = () => (
|
||||
<ChatProvider>
|
||||
|
|
Loading…
Reference in a new issue