()
| 29 | navigation.navigate("AppExplanation"); |
| 30 | } |
| 31 | function handleGameOver() { |
| 32 | navigation.navigate("Start"); |
| 33 | db.transaction((tx) => { |
| 34 | tx.executeSql("DROP TABLE habits;"); |
| 35 | tx.executeSql("DROP TABLE change_navigation;"); |
| 36 | }); |
| 37 | } |
| 38 | |
| 39 | const excludeArea = route.params?.excludeArea; |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected