Merge branch 'dev' into feat/um-202-event-data-new

This commit is contained in:
Brian Cao 2023-03-23 00:39:39 -07:00
commit f4b32bab43
92 changed files with 479 additions and 479 deletions

View file

@ -1,10 +1,9 @@
import { Row, Column, Flexbox } from 'react-basics';
import { useIntl } from 'react-intl';
import AppLayout from 'components/layout/AppLayout';
import { labels } from 'components/messages';
import useMessages from 'hooks/useMessages';
export default function Custom404() {
const { formatMessage } = useIntl();
const { formatMessage, labels } = useMessages();
return (
<AppLayout>

View file

@ -29,7 +29,7 @@ export default function App({ Component, pageProps }) {
const Wrapper = ({ children }) => <span className={locale}>{children}</span>;
if (!config || config.uiDisabled) {
if (config?.uiDisabled) {
return null;
}