diff options
author | bobzel <zzzman@gmail.com> | 2024-08-15 11:14:04 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-08-15 11:14:04 -0400 |
commit | 25ea424ab2e6c32272e828b98822eb32f1fe2cab (patch) | |
tree | 8e6790ab50664401f9c4cb9172bbec0c2e88de99 /src/client/views/StyleProvider.tsx | |
parent | 5960fa9635c28c2b609826005cb7595ec6b9fb75 (diff) |
cleaned up server list add/rem.
Diffstat (limited to 'src/client/views/StyleProvider.tsx')
-rw-r--r-- | src/client/views/StyleProvider.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/StyleProvider.tsx b/src/client/views/StyleProvider.tsx index 2792955a0..374f8ca3a 100644 --- a/src/client/views/StyleProvider.tsx +++ b/src/client/views/StyleProvider.tsx @@ -13,7 +13,6 @@ import { Id } from '../../fields/FieldSymbols'; import { ScriptField } from '../../fields/ScriptField'; import { BoolCast, Cast, DocCast, ImageCast, NumCast, ScriptCast, StrCast } from '../../fields/Types'; import { AudioAnnoState } from '../../server/SharedMediaTypes'; -import { emptyPath } from '../../Utils'; import { CollectionViewType, DocumentType } from '../documents/DocumentTypes'; import { IsFollowLinkScript } from '../documents/DocUtils'; import { SnappingManager } from '../util/SnappingManager'; @@ -406,5 +405,5 @@ export function DashboardStyleProvider(doc: Opt<Doc>, props: Opt<FieldViewProps> } export function returnEmptyDocViewList() { - return emptyPath; + return [] as DocumentView[]; } |