|
1 | 1 | import * as React from "react"; |
2 | 2 | import { Observable } from "rxjs"; |
3 | | -import { IMemberQueryOptions as FilterOptions } from "@dorgtech/arc.js"; |
| 3 | +import { IMemberQueryOptions as FilterOptions } from "@daostack/arc.js"; |
4 | 4 | import { |
5 | 5 | Arc as Protocol, |
6 | 6 | ArcConfig as ProtocolConfig, |
@@ -68,24 +68,24 @@ class InferredMembers extends ComponentList<InferredProps, Component> { |
68 | 68 |
|
69 | 69 | public static get Entities() { |
70 | 70 | return CreateContextFeed( |
71 | | - this._EntitiesContext.Consumer, |
72 | | - this._LogsContext.Consumer, |
| 71 | + this.EntitiesContext.Consumer, |
| 72 | + this.LogsContext.Consumer, |
73 | 73 | "Members" |
74 | 74 | ); |
75 | 75 | } |
76 | 76 |
|
77 | 77 | public static get Logs() { |
78 | 78 | return CreateContextFeed( |
79 | | - this._LogsContext.Consumer, |
80 | | - this._LogsContext.Consumer, |
| 79 | + this.LogsContext.Consumer, |
| 80 | + this.LogsContext.Consumer, |
81 | 81 | "Members" |
82 | 82 | ); |
83 | 83 | } |
84 | 84 |
|
85 | | - protected static _EntitiesContext = React.createContext<Entity[] | undefined>( |
| 85 | + protected static EntitiesContext = React.createContext<Entity[] | undefined>( |
86 | 86 | undefined |
87 | 87 | ); |
88 | | - protected static _LogsContext = React.createContext< |
| 88 | + protected static LogsContext = React.createContext< |
89 | 89 | ComponentListLogs | undefined |
90 | 90 | >(undefined); |
91 | 91 | } |
|
0 commit comments