diff --git a/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx b/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx index b5bba05f06e..e3d68dda7cb 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx +++ b/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx @@ -36,15 +36,15 @@ export const VoreInsidePanel = (props: { and you are   - - {digestModeToPreyMode[belly_mode]} + + {digestModeToPreyMode[belly_mode!]}   {desc} - {(contents.length && ( + {(contents!.length && ( diff --git a/tgui/packages/tgui/interfaces/VorePanel/index.tsx b/tgui/packages/tgui/interfaces/VorePanel/index.tsx index 9cf7a76a6b2..e0b865d1720 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/index.tsx +++ b/tgui/packages/tgui/interfaces/VorePanel/index.tsx @@ -66,7 +66,7 @@ export const VorePanel = (props) => { )) || ''} - 500 ? '30%' : '20%'}> + 500 ? '30%' : '20%'}> diff --git a/tgui/packages/tgui/interfaces/VorePanel/types.ts b/tgui/packages/tgui/interfaces/VorePanel/types.ts index 85cae957e56..a0c6dd31438 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/types.ts +++ b/tgui/packages/tgui/interfaces/VorePanel/types.ts @@ -25,12 +25,12 @@ export type hostMob = { export type insideData = { absorbed: BooleanLike; - belly_name: string; - belly_mode: string; - desc: string; - pred: string; - ref: string; - contents: contentData[]; + belly_name?: string; + belly_mode?: string; + desc?: string; + pred?: string; + ref?: string; + contents?: contentData[]; }; export type contentData = {