This commit is contained in:
2025-07-21 02:14:53 +03:00
parent 52417341b6
commit af68acff64
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "qapp-core",
"version": "1.0.44",
"version": "1.0.46",
"description": "Qortal's core React library with global state, UI components, and utilities",
"main": "dist/index.js",
"module": "dist/index.mjs",

View File

@@ -52,7 +52,7 @@ const DynamicGrid: React.FC<DynamicGridProps> = ({
}}
>
{items.map((component, index) => (
<div ref={index === 0 ? itemContainerRef : null} key={index} style={{ width: "100%", display: "flex", justifyContent: "center", maxWidth: '400px' }}>
<div ref={index === 0 ? itemContainerRef : null} key={index} style={{ width: "100%", display: "flex", justifyContent: "center" }}>
{component} {/* ✅ Renders user-provided component */}
</div>
))}

View File

@@ -229,7 +229,7 @@ export const MobileControls = ({
sx={{
width: "100%",
position: "absolute",
bottom: 0,
bottom: '2px',
display: "flex",
flexDirection: "column",
}}