Fix type conflicts

This commit is contained in:
Adria Navarro 2025-05-06 17:34:39 +02:00
parent c92490c39c
commit f87c723a79
1 changed files with 1 additions and 3 deletions

View File

@ -5,8 +5,6 @@ import modal from "./modal"
import newScreen from "./newScreen" import newScreen from "./newScreen"
import sidePanel from "./sidePanel" import sidePanel from "./sidePanel"
type NewScreenType = "inline" | "modal" | "sidePanel" | "newScreen"
const createScreen = async ({ const createScreen = async ({
tableOrView, tableOrView,
type, type,
@ -14,7 +12,7 @@ const createScreen = async ({
screens, screens,
}: { }: {
tableOrView: SourceOption tableOrView: SourceOption
type: NewScreenType type: string
permissions: UIPermissions permissions: UIPermissions
screens: Screen[] screens: Screen[]
}) => { }) => {