diff --git a/apps/ai-game-creator-shell/src-tauri/src/tests/project.rs b/apps/ai-game-creator-shell/src-tauri/src/tests/project.rs index 9ed662249..4b0546d7a 100644 --- a/apps/ai-game-creator-shell/src-tauri/src/tests/project.rs +++ b/apps/ai-game-creator-shell/src-tauri/src/tests/project.rs @@ -3927,10 +3927,7 @@ fn local_project_export_package_publish_payload_contains_bytes_and_file_digests( payload.package_bytes.len() as u64 ); assert_eq!(payload.files.len(), 2); - assert!(payload - .files - .iter() - .any(|file| file.path == "index.html")); + assert!(payload.files.iter().any(|file| file.path == "index.html")); assert!(payload .files .iter() diff --git a/apps/ai-game-creator-shell/src/App.tsx b/apps/ai-game-creator-shell/src/App.tsx index 239da81a2..8cb474817 100644 --- a/apps/ai-game-creator-shell/src/App.tsx +++ b/apps/ai-game-creator-shell/src/App.tsx @@ -40,7 +40,6 @@ import { } from './app/constants'; import { useEscapeToClose } from './app/dialogs'; import { resolveTauriInvoke } from './app/tauri'; -import { GameDistributionPublishPanel } from './components/game-distribution/GameDistributionPublishPanel'; import type { AgentBackgroundSubmitMode, AgentProgressEvent, @@ -98,6 +97,7 @@ import type { TauriInvoke, UploadLocalAssetResult, } from './app/types'; +import { GameDistributionPublishPanel } from './components/game-distribution/GameDistributionPublishPanel'; import { useWindowChrome } from './components/windowChromeContext'; import { agentConversationId, diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts index e6afcb5f1..87fb5dc00 100644 --- a/packages/shared/src/index.ts +++ b/packages/shared/src/index.ts @@ -2,10 +2,10 @@ export * from './components'; export * from './contracts/auth'; export type * from './contracts/clientDownload'; export * from './contracts/common'; -export * from './contracts/gameDistribution'; export type * from './contracts/editorAudio'; export * from './contracts/editorScene'; export * from './contracts/externalGeneration'; +export * from './contracts/gameDistribution'; export type * from './contracts/hyper3d'; export * from './contracts/runtime'; export * from './http';