From 15aae4ccf5173c70dadde006524d19dcafc46fbb Mon Sep 17 00:00:00 2001 From: Camerin Figueroa Date: Sat, 29 Jan 2022 19:20:04 -0500 Subject: [PATCH] Fixed loading bar bug --- src/actions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/index.js b/src/actions/index.js index e4501e0..50f6fa0 100644 --- a/src/actions/index.js +++ b/src/actions/index.js @@ -100,7 +100,7 @@ export const downloadModel = () => async (dispatch, getState) => { dispatch({ type: 'SET_PROGRESS', - payload: _.round(p) + payload: _.round(p*100) }); } }