Skip to content

Commit 9876a2f

Browse files
committed
fixes lint issue
1 parent 4077cbb commit 9876a2f

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed
Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
"apps": [
1+
{
2+
"apps": [
23
{
34
"serverURL": "http://localhost:1337/parse",
4-
"appId": "hello",
5-
"masterKey": "world",
6-
"appName": "",
7-
"iconName": "",
8-
"primaryBackgroundColor": "",
9-
"secondaryBackgroundColor": ""
5+
"appId": "1234",
6+
"masterKey": "12345",
7+
"appName": "MyApp"
108
}
11-
],
12-
"iconsFolder": "icons"
9+
]
1310
}

src/components/Filter/Filter.react.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ const Filter = ({
8484
schema,
8585
filters,
8686
Allclasses,
87-
AllclassesSchema,
8887
renderRow,
8988
onChange,
9089
onSearch,

src/dashboard/Data/Browser/ObjectPickerDialog.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default class ObjectPickerDialog extends React.Component {
128128
}
129129
const className = this.props.className;
130130
const source = this.state.relation || className;
131-
let query =await queryFromFilters(source, this.state.filters);
131+
let query = await queryFromFilters(source, this.state.filters);
132132
if (this.state.ordering !== '-createdAt') {
133133
// Construct complex pagination query
134134
const equalityQuery = await queryFromFilters(source, this.state.filters);

0 commit comments

Comments
 (0)