Skip to content

Commit

Permalink
(fix) obPrettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rrw-zilliqa committed Aug 28, 2024
1 parent 544805d commit dc415c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/execution/address/ScillaState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ export const ScillaState: FC<ScillaStateProps> = ({
setLoadContractState,
}) => {
const { zilliqa } = useContext(RuntimeContext);
const [contractState, setContractState] = useState<ContractState | null>(null);
const [contractState, setContractState] = useState<ContractState | null>(
null,
);

const { data, isLoading } = useSmartContractState(
loadContractState ? zilliqa : undefined,
Expand Down

0 comments on commit dc415c4

Please sign in to comment.