Skip to content

Commit

Permalink
Merge pull request #335 from sarathjasrin/hotfix/fix-default-locale
Browse files Browse the repository at this point in the history
Change default locale to en in demo
  • Loading branch information
m-Ryan authored Jul 15, 2023
2 parents 50c32ec + 54b79ce commit 0f6cb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/src/pages/Editor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export default function Editor() {
const dispatch = useDispatch();
const history = useHistory();
const templateData = useAppSelector('template');
const [locale, setLocale] = useState('zh-Hans');
const [locale, setLocale] = useState('en');
const { addCollection, removeCollection, collectionCategory } = useCollection();
const [visible, setVisible] = useState(false);
const [text, setText] = useState('');
Expand Down

0 comments on commit 0f6cb6b

Please sign in to comment.