diff --git a/app/components/ColorPicker/ColorPicker.js b/app/components/ColorPicker/ColorPicker.js index cd005ede6..f359312d8 100644 --- a/app/components/ColorPicker/ColorPicker.js +++ b/app/components/ColorPicker/ColorPicker.js @@ -157,6 +157,10 @@ const SwatchInset = styled(Flex)` const StyledOutline = styled(Outline)` padding: 5px; + + strong { + font-weight: 500; + } `; const HexHash = styled.div` diff --git a/app/stores/CollectionsStore.js b/app/stores/CollectionsStore.js index 18e7c2ff7..0a3880d28 100644 --- a/app/stores/CollectionsStore.js +++ b/app/stores/CollectionsStore.js @@ -10,7 +10,6 @@ import ErrorsStore from 'stores/ErrorsStore'; import UiStore from 'stores/UiStore'; type Options = { - teamId: string, ui: UiStore, }; @@ -31,7 +30,6 @@ class CollectionsStore { @observable isFetching: boolean = false; client: ApiClient; - teamId: string; errors: ErrorsStore; ui: UiStore; @@ -95,9 +93,7 @@ class CollectionsStore { this.isFetching = true; try { - const res = await this.client.post('/collections.list', { - id: this.teamId, - }); + const res = await this.client.post('/collections.list'); invariant(res && res.data, 'Collection list not available'); const { data } = res; runInAction('CollectionsStore#fetch', () => { @@ -158,7 +154,6 @@ class CollectionsStore { constructor(options: Options) { this.client = client; this.errors = stores.errors; - this.teamId = options.teamId; this.ui = options.ui; } }