diff --git a/src/components/[guild]/RolePlatforms/components/EditRolePlatformModal.tsx b/src/components/[guild]/RolePlatforms/components/EditRolePlatformModal.tsx index b1d993df55..bfc4e7b1f6 100644 --- a/src/components/[guild]/RolePlatforms/components/EditRolePlatformModal.tsx +++ b/src/components/[guild]/RolePlatforms/components/EditRolePlatformModal.tsx @@ -32,7 +32,7 @@ export const useEditRolePlatformContext = () => useContext(EditRolePlatformConte /** * Role platforms with dynamic amount will return input as an array of objects, but we handle it as a single object on the frontend, so we map it to the correct format with this function. * - * Context: LINEAR operation will always have only 1 input, so we decided we could handle it as an object insted of an array with 1 object in it. + * Context: LINEAR operation will always have only 1 input, so we decided we could handle it as an object instead of an array with 1 object in it. * * IMPORTANT: Once we start using other operation types for dynamic amount, we should only support arrays to avoid unnecessary complexity. */ diff --git a/src/requirements/Farcaster/components/FarcasterCastHash.tsx b/src/requirements/Farcaster/components/FarcasterCastHash.tsx index 95c2b03ba3..b6053bb447 100644 --- a/src/requirements/Farcaster/components/FarcasterCastHash.tsx +++ b/src/requirements/Farcaster/components/FarcasterCastHash.tsx @@ -23,7 +23,7 @@ const FarcasterCastHash = ({ baseFieldPath }: Props) => { /** * Handling the combined URL & hash input in a separate form, so we can easily - * valide the input + * validate the input */ const urlOrHashForm = useForm<{ urlOrHash: string }>({ mode: "all",