Skip to content

Commit

Permalink
Update error message fallback render function
Browse files Browse the repository at this point in the history
  • Loading branch information
itamargiv committed Nov 3, 2023
1 parent 6b0bb41 commit f263227
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions resources/js/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ async function setupI18n(locale: string): Promise<void>{
} catch (e) {
createApp({
render: () => h(Error, {
props: {
title: 'Oops!',
description: 'Something unexpected happened, but we are working on it... please try to refresh, or come back later.'
}
title: 'Oops!',
description: 'Something unexpected happened, but we are working on it... please try to refresh, or come back later.'
}),
}).mount('#app');
}
Expand Down

0 comments on commit f263227

Please sign in to comment.