diff --git a/backend/__pycache__/main.cpython-313.pyc b/backend/__pycache__/main.cpython-313.pyc index 7e71e58..52df594 100644 Binary files a/backend/__pycache__/main.cpython-313.pyc and b/backend/__pycache__/main.cpython-313.pyc differ diff --git a/backend/main.py b/backend/main.py index 0b227bc..928c622 100644 --- a/backend/main.py +++ b/backend/main.py @@ -80,6 +80,9 @@ def list_icons(): return categories - if __name__ == "__main__": uvicorn.run(app, host="0.0.0.0", port=8000) + +# For development, you can uncomment the line below to run the server with uvicorn directly. +# if __name__ == "__main__": +# uvicorn.run(app, host="0.0.0.0", port=8001) \ No newline at end of file diff --git a/frontend/src/components/CustomNode.jsx b/frontend/src/components/CustomNode.jsx index 45f3830..2220f09 100644 --- a/frontend/src/components/CustomNode.jsx +++ b/frontend/src/components/CustomNode.jsx @@ -27,8 +27,8 @@ function CustomNode({ data }) { border: '2px solid #1976d2', borderRadius: 6, textAlign: 'center', - width: 80, - height: 80, + width: 120, + height: 120, boxShadow: '0 2px 6px rgba(0,0,0,0.2)', position: 'relative', }}> @@ -57,7 +57,7 @@ function CustomNode({ data }) { }} style={{ width: 40, height: 40, marginTop: 6 }} /> -
{data.label}
+
{data.label}
); }