chore: Move to prettier standard double quotes (#1309)

This commit is contained in:
Tom Moor
2020-06-20 13:59:15 -07:00
committed by GitHub
parent 2a3b9e2104
commit f43deb7940
444 changed files with 5988 additions and 5977 deletions

View File

@ -1,8 +1,8 @@
// @flow
import { extendObservable, action } from 'mobx';
import { extendObservable, action } from "mobx";
import BaseModel from 'models/BaseModel';
import { client } from 'utils/ApiClient';
import BaseModel from "models/BaseModel";
import { client } from "utils/ApiClient";
type Settings = {
url: string,
@ -10,7 +10,7 @@ type Settings = {
channelId: string,
};
type Events = 'documents.create' | 'collections.create';
type Events = "documents.create" | "collections.create";
class Integration extends BaseModel {
id: string;
@ -21,7 +21,7 @@ class Integration extends BaseModel {
@action
update = async (data: Object) => {
await client.post('/integrations.update', { id: this.id, ...data });
await client.post("/integrations.update", { id: this.id, ...data });
extendObservable(this, data);
return true;
};