fix: correct the fragment URL of inner instruction cards in Explorer

This commit is contained in:
steveluscher 2022-05-02 12:50:00 -07:00
parent 2108803b0c
commit 7bb867404f
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ export function InstructionCard({
};
const scrollAnchorRef = useScrollAnchor(
getInstructionCardScrollAnchorId(
childIndex != null ? [index + 1, childIndex] : [index + 1]
childIndex != null ? [index + 1, childIndex + 1] : [index + 1]
)
);
return (