Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
lfades committed Sep 21, 2020
1 parent 4647fa3 commit 344113e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/with-react-intl/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ const getInitialProps: typeof App.getInitialProps = async appContext => {
App.getInitialProps(appContext),
]);

return {...(appProps as any), locale: supportedLocale, messages: messages.default};
return {
...(appProps as any),
locale: supportedLocale,
messages: messages.default,
};
};

MyApp.getInitialProps = getInitialProps;
Expand Down

0 comments on commit 344113e

Please sign in to comment.