We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08fcc61 commit 7595e77Copy full SHA for 7595e77
apps/frontend/src/providers/version/stages/dependencies-stage.ts
@@ -10,7 +10,7 @@ export const stageConfig: StageConfigInput<ManageVersionContextValue> = {
10
id: 'add-dependencies',
11
stageContent: markRaw(DependenciesStage),
12
title: (ctx) => (ctx.editingVersion.value ? 'Edit dependencies' : 'Dependencies'),
13
- skip: (ctx) => ctx.suggestedDependencies.value != null,
+ skip: (ctx) => ctx.suggestedDependencies.value != null || ctx.projectType.value === 'modpack',
14
leftButtonConfig: (ctx) =>
15
ctx.editingVersion.value
16
? {
0 commit comments