fix lint: use let instead of const for $ref
Fixes lint no-const-assign.
This commit is contained in:
parent
935fce338a
commit
2bd4323b17
4 changed files with 6 additions and 6 deletions
|
|
@ -118,7 +118,7 @@ const fgColors = [
|
|||
{ color: 'pink', forLight: '#84667d', forDark: '#e4d1e0', forPreview: '#b12390' },
|
||||
];
|
||||
|
||||
const theme = $ref<Partial<Theme>>({
|
||||
let theme = $ref<Partial<Theme>>({
|
||||
base: 'light',
|
||||
props: lightTheme.props,
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue