Skip to content

Commit

Permalink
fix most merge issues...
Browse files Browse the repository at this point in the history
  • Loading branch information
mrose17 committed Oct 3, 2023
1 parent 65da3a3 commit 121627e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
: temporary
: npx lint-staged
1 change: 0 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export const App = () => {
isCallReady={isCallReady}
isWeb3Call={isWeb3Call}
jitsiContext={jitsiContext}
web3Account={web3Account}
/>
{!isCallReady &&
(isWeb3Call && hasInitialRoom ? (
Expand Down
2 changes: 0 additions & 2 deletions src/components/InCall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ interface Props {
isCallReady: boolean;
isWeb3Call: boolean;
jitsiContext: JitsiContext;
web3Account: "ETH" | "SOL" | null;
}

export const InCall = ({
Expand All @@ -40,7 +39,6 @@ export const InCall = ({
isCallReady,
isWeb3Call,
jitsiContext: context,
web3Account,
}: Props) => {
const divRef = useRef(null);
const [jitsiMeet, setJitsiMeet] = useState<IJitsiMeetApi>();
Expand Down
7 changes: 2 additions & 5 deletions src/jitsi/event-handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import {
askOnUnload,
updateSubject,
} from "./lib";
import {
EIP4361Message,
createEIP4361Message,
} from "../components/web3/EIP4361";
import { getNonce } from "../components/web3/api";
import { cryptoAction } from "../components/web3/crypto/CryptoWrapper";
import {
SIWEReturnParams,
Expand Down Expand Up @@ -312,11 +307,13 @@ export const onEndpointTextMessageForCryptoSendHandler = {
jitsiId: params.data.senderInfo.id,
siwe: siwe,
});
break;
}

case "REJECT": {
const nonce = msg.payload;
cryptoAction.rejectOutstandingRequest(nonce);
break;
}
}
},
Expand Down

0 comments on commit 121627e

Please sign in to comment.