We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679e967 commit 3c099daCopy full SHA for 3c099da
src/feed.ts
@@ -64,7 +64,7 @@ const Feed =
64
onUpdate,
65
});
66
67
- const { add, remove, iterator, all } = await FeedApi({ database });
+ const { add, remove, iterator, all } = FeedApi({ database });
68
69
return {
70
...database,
@@ -78,7 +78,7 @@ const Feed =
78
79
Feed.type = type;
80
81
-export const FeedApi = async ({ database }: { database: BaseDatabase }) => {
+export const FeedApi = ({ database }: { database: BaseDatabase }) => {
82
const { addOperation, log } = database;
83
84
const add = async (value: DagCborEncodable): Promise<string> => {
0 commit comments