Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit 20ceb6c

Browse files
committed
Merge remote-tracking branch 'origin/main' into offline-storage-api-2
2 parents 974826f + ce8140b commit 20ceb6c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

elementary/src/grid/SearchGrid.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ import { SmallCard } from '../SmallCard'
1313
import { ShrinkCard } from '../ShrinkCard'
1414
import { NodeTimeBadge } from '../NodeTimeBadge'
1515

16-
import { INodeIterator } from 'smuggler-api'
17-
import type { TNode, StorageApi } from 'smuggler-api'
16+
import type { TNode, INodeIterator, StorageApi } from 'smuggler-api'
1817

1918
import { log, isAbortError, errorise } from 'armoury'
2019

smuggler-api/src/node_slice_iterator.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { Optional } from 'armoury'
44
export interface INodeIterator {
55
next: () => Promise<Optional<TNode>>
66
total: () => number
7+
exhausted: () => boolean
78
abort: () => void
89
}
910

truthsayer/src/card/SearchAndConnect.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
import React, { useContext } from 'react'
1+
import React from 'react'
22
import { Modal, Form } from 'react-bootstrap'
33

44
import { SearchGrid } from 'elementary'
55

66
import lodash from 'lodash'
77
import { MzdGlobalContext } from '../lib/global'
8-
import { StorageApi } from 'smuggler-api'
98

109
type SearchAndConnectJinnModalProps = {
1110
nid: string

0 commit comments

Comments
 (0)