Skip to content

Commit

Permalink
Merge branch 'refs/heads/subwallet-dev' into koni/dev/issue-2823_
Browse files Browse the repository at this point in the history
  • Loading branch information
nampc1 committed Apr 13, 2024
2 parents e85473f + 8e0ee1e commit 6732f57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Component ({ className, request }: Props) {
const { account } = request;
const { t } = useTranslation();
const payload = useParseSubstrateRequestPayload(request.request);
const chainInfo = useGetChainInfoByGenesisHash((payload as ExtrinsicPayload).genesisHash.toString());
const chainInfo = useGetChainInfoByGenesisHash(((payload as ExtrinsicPayload).genesisHash || '').toString());
const { chainStateMap } = useSelector((root: RootState) => root.chainStore);
const onClickDetail = useOpenDetailModal();

Expand Down

0 comments on commit 6732f57

Please sign in to comment.