diff --git a/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx b/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx index 58194f5aa..1107f0f17 100644 --- a/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx +++ b/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx @@ -189,7 +189,7 @@ export default function IMSSTextbox(props: ITextboxProps) { const userDataState = useSelector((state: RootState) => state.userData); const lineHeightValue = textSizeState === textSize.medium ? 2.2 : 2; - const textLineHeight = userDataState.globalGameVar.LineHeight; + const textLineHeight = userDataState.globalGameVar.Line_height; const finalTextLineHeight = textLineHeight ? Number(textLineHeight) : lineHeightValue; const lineHeightCssStr = `line-height: ${finalTextLineHeight}em`; const lhCss = css(lineHeightCssStr);