feat: add caching headers for models, update viewport meta tag, and enhance error handling; improve flight tracker layout and status bar styling

This commit is contained in:
Kewonit
2026-02-15 01:34:44 +05:30
parent fdbc604919
commit 3b431e2c8d
8 changed files with 96 additions and 39 deletions

View File

@ -13,7 +13,9 @@ export class ErrorBoundary extends Component<Props, State> {
}
componentDidCatch(error: Error, info: React.ErrorInfo) {
console.error("[aeris] Uncaught error:", error, info.componentStack);
if (process.env.NODE_ENV === "development") {
console.error("[aeris] Uncaught error:", error, info.componentStack);
}
}
render() {