diff options
author | bobzel <zzzman@gmail.com> | 2024-10-02 12:54:29 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-10-02 12:54:29 -0400 |
commit | 39935af9a1204e1afc20659172e5a1a26f65e35c (patch) | |
tree | db57c4baef2063f32ae5f2fae279dce5aa654791 /src | |
parent | 32efd65cbcd824bb39d5e36a90711305b14710f7 (diff) |
missing import
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/CollectionCarouselView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCarouselView.tsx b/src/client/views/collections/CollectionCarouselView.tsx index bb757cc43..97d86393b 100644 --- a/src/client/views/collections/CollectionCarouselView.tsx +++ b/src/client/views/collections/CollectionCarouselView.tsx @@ -4,7 +4,7 @@ import { action, computed, makeObservable, observable } from 'mobx'; import { observer } from 'mobx-react'; import * as React from 'react'; import { StopEvent, returnOne, returnZero } from '../../../ClientUtils'; -import { Doc, Opt } from '../../../fields/Doc'; +import { Doc, DocListCast, Opt } from '../../../fields/Doc'; import { BoolCast, DocCast, NumCast, ScriptCast, StrCast } from '../../../fields/Types'; import { DocumentType } from '../../documents/DocumentTypes'; import { Docs } from '../../documents/Documents'; |