Fix merge conflict missed from before

pull/1049/head
bree 2021-07-04 21:11:23 -04:00
parent 1cc6514c9a
commit f7466773ad
1 changed files with 2 additions and 2 deletions

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;