Skip to content

Commit

Permalink
resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
neotheprogramist committed Nov 5, 2023
1 parent 431a0f9 commit 44e2025
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion web/src/app/chats/public/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {BiDollar} from 'react-icons/bi';
import axios from "axios";

export default function Profile({ params }: { params: { address: string } }) {
const [chat, setChat] = useState<"public" | "private">("public");
const [myMessages, setMyMessages] = useState<
{
id: number;
Expand Down
4 changes: 0 additions & 4 deletions web/src/context/wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ export interface WalletContext {
const WalletContext = createContext<{
walletContext: WalletContext;
setWalletContext: (value: WalletContext) => void;
<<<<<<< HEAD
}>({ walletContext: {}, setWalletContext: () => {} });
=======
} | undefined>(undefined);
>>>>>>> c96567f (contexts)

export const useWalletContext = () => useContext(WalletContext);

Expand Down

0 comments on commit 44e2025

Please sign in to comment.