diff --git a/store/index.js b/store/index.js
index daf76d55599fd5a566ad4f066227665a307d43c8..cbd482764c21102e4c1ff72179204e33935c25e3 100644
--- a/store/index.js
+++ b/store/index.js
@@ -29,6 +29,6 @@ export const getters = {
     return state.consumption
   },
   fillPercentage(state) {
-    return Math.min(100, (state.consumption / state.goal) * 100)
+    return Math.min(100, Math.floor(state.consumption / state.goal * 100))
   }
 }