Fix merge conflict missed from before

This commit is contained in:
bree 2021-07-04 21:11:23 -04:00
parent e070f26bda
commit e03449b75c
No known key found for this signature in database
GPG key ID: 1B2E56B9EC985B96

View file

@ -270,8 +270,8 @@ interface Props {
function Theme({ children, options }: Props) {
const theme: Theme = {
...PRESETS["dark"],
...PRESETS[props.options?.preset ?? ''],
...props.options?.custom
...PRESETS[options?.preset ?? ''],
...options?.custom
};
const root = document.documentElement.style;