Skip to content

Commit 277abce

Browse files
authored
fix(typo): fix typo in folder name (#6608)
Fix a small typo in a folder name (+ a conflict resolution) **Manual Tests:** I hereby swear that: - [X] I opened a hydrogen project and it loaded - [X] I could navigate to various routes in Play mode
1 parent 8a5b3ee commit 277abce

18 files changed

+13
-13
lines changed

editor/src/components/editor/action-types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ import type {
9191
ImportOperation,
9292
ImportOperationAction,
9393
} from '../../core/shared/import/import-operation-types'
94-
import type { ProjectRequirements } from '../../core/shared/import/proejct-health-check/utopia-requirements-types'
94+
import type { ProjectRequirements } from '../../core/shared/import/project-health-check/utopia-requirements-types'
9595
export { isLoggedIn, loggedInUser, notLoggedIn } from '../../common/user'
9696
export type { LoginState, UserDetails } from '../../common/user'
9797

editor/src/components/editor/actions/action-creators.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ import type {
275275
ImportOperation,
276276
ImportOperationAction,
277277
} from '../../../core/shared/import/import-operation-types'
278-
import type { ProjectRequirements } from '../../../core/shared/import/proejct-health-check/utopia-requirements-types'
278+
import type { ProjectRequirements } from '../../../core/shared/import/project-health-check/utopia-requirements-types'
279279

280280
export function clearSelection(): EditorAction {
281281
return {

editor/src/components/editor/actions/actions.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -628,9 +628,9 @@ import { getNavigatorTargetsFromEditorState } from '../../navigator/navigator-ut
628628
import { getParseCacheOptions } from '../../../core/shared/parse-cache-utils'
629629
import { styleP } from '../../inspector/inspector-common'
630630
import { getUpdateOperationResult } from '../../../core/shared/import/import-operation-service'
631-
import { updateRequirements } from '../../../core/shared/import/proejct-health-check/utopia-requirements-service'
631+
import { updateRequirements } from '../../../core/shared/import/project-health-check/utopia-requirements-service'
632632
import { applyValuesAtPath, deleteValuesAtPath } from '../../canvas/commands/utils/property-utils'
633-
import { createStoryboardFileIfNecessary } from '../../../core/shared/import/proejct-health-check/requirements/requirement-storyboard'
633+
import { createStoryboardFileIfNecessary } from '../../../core/shared/import/project-health-check/requirements/requirement-storyboard'
634634

635635
export const MIN_CODE_PANE_REOPEN_WIDTH = 100
636636

editor/src/components/editor/import-wizard/components.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { ImportOperationResult } from '../../../core/shared/import/import-operat
1111
import { assertNever } from '../../../core/shared/utils'
1212
import { Icons } from '../../../uuiui'
1313
import { GithubSpinner } from '../../../components/navigator/left-pane/github-pane/github-spinner'
14-
import { RequirementResolutionResult } from '../../../core/shared/import/proejct-health-check/utopia-requirements-types'
14+
import { RequirementResolutionResult } from '../../../core/shared/import/project-health-check/utopia-requirements-types'
1515

1616
export function OperationLine({ operation }: { operation: ImportOperation }) {
1717
const operationRunningStatus = React.useMemo(() => {

editor/src/components/editor/store/editor-state.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ import type { ImportOperation } from '../../../core/shared/import/import-operati
193193
import {
194194
emptyProjectRequirements,
195195
type ProjectRequirements,
196-
} from '../../../core/shared/import/proejct-health-check/utopia-requirements-types'
196+
} from '../../../core/shared/import/project-health-check/utopia-requirements-types'
197197

198198
const ObjectPathImmutable: any = OPI
199199

editor/src/components/editor/store/store-deep-equality-instances.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -647,11 +647,11 @@ import type { ImportOperation } from '../../../core/shared/import/import-operati
647647
import type {
648648
ProjectRequirements,
649649
RequirementResolution,
650-
} from '../../../core/shared/import/proejct-health-check/utopia-requirements-types'
650+
} from '../../../core/shared/import/project-health-check/utopia-requirements-types'
651651
import {
652652
newProjectRequirements,
653653
requirementResolution,
654-
} from '../../../core/shared/import/proejct-health-check/utopia-requirements-types'
654+
} from '../../../core/shared/import/project-health-check/utopia-requirements-types'
655655

656656
export function ElementPropertyPathKeepDeepEquality(): KeepDeepEqualityCall<ElementPropertyPath> {
657657
return combine2EqualityCalls(

editor/src/components/editor/store/store-hook-substore-helpers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { type EditorState } from './editor-state'
2-
import { emptyProjectRequirements } from '../../../core/shared/import/proejct-health-check/utopia-requirements-types'
2+
import { emptyProjectRequirements } from '../../../core/shared/import/project-health-check/utopia-requirements-types'
33

44
export const EmptyEditorStateForKeysOnly: EditorState = {
55
id: null,

editor/src/core/shared/github/operations/load-branch.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ import {
4545
import {
4646
RequirementResolutionResult,
4747
resetRequirementsResolutions,
48-
} from '../../import/proejct-health-check/utopia-requirements-service'
49-
import { checkAndFixUtopiaRequirements } from '../../import/proejct-health-check/check-utopia-requirements'
48+
} from '../../import/project-health-check/utopia-requirements-service'
49+
import { checkAndFixUtopiaRequirements } from '../../import/project-health-check/check-utopia-requirements'
5050
import { ImportOperationResult } from '../../import/import-operation-types'
5151

5252
export const saveAssetsToProject =

editor/src/core/shared/import/import-operation-types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { GithubRepo } from '../../../components/editor/store/editor-state'
2-
import type { RequirementResolutionResult } from './proejct-health-check/utopia-requirements-types'
2+
import type { RequirementResolutionResult } from './project-health-check/utopia-requirements-types'
33

44
type ImportOperationData = {
55
text?: string

editor/src/core/shared/import/proejct-health-check/check-utopia-requirements.ts editor/src/core/shared/import/project-health-check/check-utopia-requirements.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function checkAndFixUtopiaRequirements(
2525
serverPackages: new CheckServerPackages(),
2626
}
2727
let projectContents = parsedProjectContents
28-
let result: RequirementResolutionResult = RequirementResolutionResult.Found
28+
let result: RequirementResolutionResult = RequirementResolutionResult.Passed
2929
// iterate over all checks, updating the project contents as we go
3030
for (const [name, check] of Object.entries(checks)) {
3131
const checkName = name as ProjectRequirement

0 commit comments

Comments
 (0)