Skip to content

Commit b7ae79f

Browse files
author
James Fox
authored
eslint fix the whole repo (#33)
1 parent b60b015 commit b7ae79f

16 files changed

+952
-1173
lines changed

src/Context.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import { createContext } from 'react'
17-
import { ReactSDKClient } from './client'
16+
import { createContext } from 'react';
17+
import { ReactSDKClient } from './client';
1818

1919
export interface OptimizelyContextInterface {
20-
optimizely: ReactSDKClient | null,
21-
isServerSide: boolean,
22-
timeout: number | undefined,
20+
optimizely: ReactSDKClient | null;
21+
isServerSide: boolean;
22+
timeout: number | undefined;
2323
}
2424

2525
export const OptimizelyContext = createContext<OptimizelyContextInterface>({
2626
optimizely: null,
2727
isServerSide: false,
2828
timeout: 0,
29-
})
29+
});
3030

31-
export const OptimizelyContextConsumer = OptimizelyContext.Consumer
32-
export const OptimizelyContextProvider = OptimizelyContext.Provider
31+
export const OptimizelyContextConsumer = OptimizelyContext.Consumer;
32+
export const OptimizelyContextProvider = OptimizelyContext.Provider;

0 commit comments

Comments
 (0)