mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
Fix merge conflict missed from before
This commit is contained in:
parent
e070f26bda
commit
e03449b75c
1 changed files with 2 additions and 2 deletions
|
@ -270,8 +270,8 @@ interface Props {
|
||||||
function Theme({ children, options }: Props) {
|
function Theme({ children, options }: Props) {
|
||||||
const theme: Theme = {
|
const theme: Theme = {
|
||||||
...PRESETS["dark"],
|
...PRESETS["dark"],
|
||||||
...PRESETS[props.options?.preset ?? ''],
|
...PRESETS[options?.preset ?? ''],
|
||||||
...props.options?.custom
|
...options?.custom
|
||||||
};
|
};
|
||||||
|
|
||||||
const root = document.documentElement.style;
|
const root = document.documentElement.style;
|
||||||
|
|
Loading…
Reference in a new issue