@switch (true) { @case (error()?.type === ErrorType.UNSUPPORTED_BROWSER_ENVIRONMENT) { @if(isIos) {

Open angular.dev on desktop to code in your browser.

} @else if(isFirefox) {

We're currently working on supporting Firefox with our development server. Meanwhile, try running the page using a different browser.

} } @case (error()?.type === ErrorType.COOKIES || error()?.type === ErrorType.UNKNOWN) {

We couldn't start the tutorial app. Please ensure third party cookies are enabled for this site.

} @case (error()?.type === ErrorType.OUT_OF_MEMORY) {

We couldn't start the tutorial app because your browser is out of memory. To free up memory, close angular.dev tutorials in other tabs or windows, and refresh the page.

} } @if (error()?.message) { The error message is: {{ error()!.message }} }