The balance score displayed in `BalanceFragment` is now formatted to show as a whole number instead of a decimal. This is achieved by changing the format specifier in `String.format` from `%.1f` to `%.0f`.
Additionally, the `@SuppressLint("UnsafeRepeatOnLifecycleDetector")` annotation has been added to the `onViewCreated` method.