#if canImport(JournalingSuggestions)
if true == false {
//OBVIOUSLY this case will never "run" but SwiftUI still checks it, and therefore crashes the app
//THIS STILL CAUSES A CRASH ON IPAD, if I want it to run i need to comment out.
JournalingSuggestionsPicker {
Text("Choose a suggestion")
} onCompletion: { suggestion in
print("suggestion:", suggestion)
}
} else {
//Only getting here if I comment out JournalingSuggestions code cause CRASH
Text("Would see this on iPad if I used the device idiom check instead of true == false")
}
#else
Text("Only see this on simulator, when I don't link weakly, otherwise i cannot build to simulator no matter what")
#endif