Skip to content

Commit 3234cec

Browse files
committed
chore: typo
1 parent bf64fd5 commit 3234cec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/hypercert/hypercert-minting-form/form-steps.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ const DatesAndPeople = ({ form }: FormStepsProps) => {
423423
);
424424
};
425425

426-
const parseAllowlist = async (value: string) => {
426+
const parseAllowList = async (value: string) => {
427427
let data;
428428
let allowList: AllowlistEntry[] = [];
429429
const url = value.startsWith("ipfs://")
@@ -598,7 +598,7 @@ const AdvancedAndSubmit = ({ form, isBlueprint }: FormStepsProps) => {
598598
};
599599

600600
const fetchAllowlist = async (value: string) => {
601-
const allowList = await parseAllowlist(value);
601+
const allowList = await parseAllowList(value);
602602
if (!allowList || allowList.length === 0) return;
603603

604604
const totalUnits = DEFAULT_NUM_UNITS;

0 commit comments

Comments
 (0)