refactor: check spelling (#2200)

Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-03-25 07:19:28 -04:00
committed by GitHub
parent 8197458a4b
commit b18c5e76c9
16 changed files with 32 additions and 32 deletions

View File

@@ -16,7 +16,7 @@ type HoppImporter<T, StepsType, Errors> = (
/**
* Definition for importers
*/
type HoppImporterDefintion<T, Y, E> = {
type HoppImporterDefinition<T, Y, E> = {
/**
* Name of the importer, shown on the Select Importer dropdown
*/
@@ -53,7 +53,7 @@ export const defineImporter = <ReturnType, StepType, Errors>(input: {
applicableTo?: Array<"team-collections" | "my-collections">
steps: StepType
}) => {
return <HoppImporterDefintion<ReturnType, StepType, Errors>>{
return <HoppImporterDefinition<ReturnType, StepType, Errors>>{
...input,
}
}