1 import { TAccountPointer } from '@/types' 2 3 export function isSameAccount(a: TAccountPointer | null, b: TAccountPointer | null) { 4 return a?.pubkey === b?.pubkey && a?.signerType === b?.signerType 5 } 6