Fixed permissions issue and modpack issue with environment overhaul

This commit is contained in:
Prospector
2025-08-28 18:40:05 -07:00
parent 697468e910
commit debaf1381c
9 changed files with 94 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
import type { Project, ProjectV3Partial } from '@modrinth/utils'
import type { Project, ProjectV3Partial, TeamMember } from '@modrinth/utils'
import type { Ref } from 'vue'
import { createContext } from '.'
@@ -7,6 +7,7 @@ export interface ProjectPageContext {
projectV2: Ref<Project>
projectV3: Ref<ProjectV3Partial>
refreshProject: () => Promise<void>
currentMember: Ref<TeamMember>
}
export const [injectProjectPageContext, provideProjectPageContext] =