Skip to content

Commit 310708e

Browse files
committed
FrontEnd Fix
1 parent f845f5a commit 310708e

File tree

4 files changed

+60
-1752
lines changed

4 files changed

+60
-1752
lines changed

update.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ case $choice in
3737
cd web_app/Source_webapp || { echo "Error: Failed to navigate to web_app directory."; exit 1; }
3838

3939
echo "Installing new packages for web_app via npm..."
40-
if npm install --legacy-peer-deps; then
40+
if npm install; then
4141
echo "Packages for web_app installed successfully."
4242
else
4343
echo "Error: Failed to install web_app packages."
@@ -168,7 +168,7 @@ case $choice in
168168
echo "Removing node_modules for web_app..."
169169
rm -rf node_modules
170170
echo "Installing new packages for web_app via npm..."
171-
if npm install --legacy-peer-deps; then
171+
if npm install; then
172172
echo "Packages for web_app installed successfully."
173173
else
174174
echo "Error: Failed to install web_app packages."

0 commit comments

Comments
 (0)