Closed
Description
Jerboa Version
Commit b8e0dfb on the main branch.
Describe the bug
When first logging in the "back" button in the top left corner is disabled.
From the code it seems like this is intentional:
IconButton(
enabled = !accounts.isNullOrEmpty(), // Removing this line would solve the problem
onClick = {
navController.popBackStack()
},
)
Please correct me if I am mistaken, but I don't really see why it should be disabled since you can still use the android back button.
To Reproduce
- Ensure that no accounts are added to the app
- Click on the Hamburger Menu in the top left corner
- Add an account
- The button in the top left corner with an "arrow_back" icon will be disabled