Skip to content

Commit

Permalink
Adjust progress bar to be hidden on page load
Browse files Browse the repository at this point in the history
  • Loading branch information
trentrand committed Jul 14, 2024
1 parent 568c290 commit f9a8f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/fastboot.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function isRecognizedDevice(deviceInfo) {
export function useFastboot() {
const [step, setStep] = useState(Step.READY)
const [message, _setMessage] = useState('')
const [progress, setProgress] = useState(0)
const [progress, setProgress] = useState(-1)
const [error, setError] = useState(Error.NONE)
const [isInitialized, setIsInitialized] = useState(false)

Expand Down

0 comments on commit f9a8f79

Please sign in to comment.