Skip to content

Commit

Permalink
Update BuddyMatcher.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
LuseBiswas authored Sep 6, 2024
1 parent aa49715 commit 8d84014
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/components/BuddyMatcher.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { useState, useEffect, useRef, useCallback } from 'react';
import { ThreeDots } from 'react-loading-icons';
import { PiPlugsLight } from 'react-icons/pi';
//import { PiPlugsLight } from 'react-icons/pi';
import { connectWithId, socket } from 'src/lib/socketConnection';

import Anonymous from 'components/Anonymous';
import ReconnectBanner from 'components/ReconnectBanner';
import { useAuth } from 'src/context/AuthContext';
import { useChat } from 'src/context/ChatContext';
import { useNavigate, Link } from 'react-router-dom';
//import { useNavigate, Link } from 'react-router-dom';
import { useNotification } from 'src/lib/notification';
import { useApp } from 'src/context/AppContext';
import { createBrowserNotification } from 'src/lib/browserNotification';
Expand All @@ -24,6 +24,7 @@ import {
NEW_EVENT_STOP_SEARCH,
NEW_EVENT_STOP_SEARCH_SUCCESS,
} from '../../../constants.json';
import { useNavigate } from 'react-router-dom';

const stoppingSearchLoadingText = <p>Stopping the search</p>;
const BuddyMatcher = () => {
Expand Down Expand Up @@ -267,5 +268,4 @@ const BuddyMatcher = () => {
/>
);
};

export default BuddyMatcher;

0 comments on commit 8d84014

Please sign in to comment.