Rename homeMachine and accessories to projectsMachine

This commit is contained in:
Frank Noirot
2024-10-04 16:16:09 -04:00
parent 4e0dd12f5a
commit 401dcf8152
3 changed files with 26 additions and 21 deletions

View File

@ -5,7 +5,7 @@ import { useCommandsContext } from './useCommandsContext'
import { modelingMachine } from 'machines/modelingMachine'
import { authMachine } from 'machines/authMachine'
import { settingsMachine } from 'machines/settingsMachine'
import { homeMachine } from 'machines/homeMachine'
import { projectsMachine } from 'machines/projectsMachine'
import {
Command,
StateMachineCommandSetConfig,
@ -22,7 +22,7 @@ export type AllMachines =
| typeof modelingMachine
| typeof settingsMachine
| typeof authMachine
| typeof homeMachine
| typeof projectsMachine
interface UseStateMachineCommandsArgs<
T extends AllMachines,