Skip to content

Commit

Permalink
removed log
Browse files Browse the repository at this point in the history
  • Loading branch information
Aamil13 committed Oct 18, 2024
1 parent 5cad4b6 commit 9dd6237
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
13 changes: 0 additions & 13 deletions src/components/molecules/MessageTopBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,7 @@ const MessageTopBar = ({ currTab, setCurrTab, unreadNotAcceptedChatsCount, setSe
<button onClick={() => setShowOneToOne(true)} className="bg-primary-500 px-3 py-2 text-xs font-medium text-white rounded-lg">
Start a Chat
</button>
{/* <button onClick={() => setShowCreateGroup(true)} className="bg-primary-500 px-3 py-2 text-xs font-medium text-white rounded-lg">
Start a Chat
</button> */}
</div>

{/* <div className="relative w-full flex items-center gap-4 outline-none border border-neutral-300 py-2 px-5 rounded-[100px]">
<IoIosSearch />
<input
type="text"
placeholder="Search Messages"
className=" outline-none w-full "
/>
</div> */}
</div>
{showCreateGroup && <CreateGroupChat setShowCreateGroup={setShowCreateGroup} setShowOneToOne={setShowOneToOne} />}
{showOneToOne && <OneToChat setShowOneToOne={setShowOneToOne} setShowCreateGroup={setShowCreateGroup} showOneToOne={showOneToOne} />}
Expand Down
1 change: 0 additions & 1 deletion src/components/molecules/OneToOneChat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const UsersModal = ({ setShowOneToOne, showOneToOne, setShowCreateGroup }: Props
const [searchInput, setSearchInput] = useState('')
const { data } = useGetUserFollowingAndFollowers(searchInput)
const { mutate: createUserChat } = useCreateUserChat()
console.log('users', data)

return (
<>
Expand Down

0 comments on commit 9dd6237

Please sign in to comment.