Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
intls committed Mar 8, 2025
1 parent 1675024 commit bf9ad4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/bridge/src/utils/hooks/useCCTPBridgeStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function useCCTPBridgeStatus({
}
}, [bridgeAttestation, bridgeDirection, initiateTxReceipt, isDeposit, message, publicClient]);

// We need to be able to set the status from the FinzliaeCCTPBridgeButton, so we expose a setter.
// We need to be able to set the status from the FinalizeCCTPBridgeButton, so we expose a setter.
return {
status,
message,
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/src/utils/hooks/useIsWalletConnected.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useAccount } from 'wagmi';

export function useIsWalletConnected(): boolean {
// This is state because otherwise the app errors with
// "Hydration failed because the initial UI does not match what was rendered on the server.""
// "Hydration failed because the initial UI does not match what was rendered on the server."
const [isConnected, setIsConnected] = useState(false);
const { address } = useAccount();

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/utils/usernames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ export async function getBasenameTextRecords(username: Basename) {
}

/*
Reclaim a Basename contrat write method
Reclaim a Basename contract write method
*/
export function buildBasenameReclaimContract(
username: Basename,
Expand Down

0 comments on commit bf9ad4e

Please sign in to comment.