Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"react/jsx-fragments": 0,
"react/no-unused-prop-types": 0,
"import/export": 0,
"quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"no-unused-vars": "off"
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ import {
useVGSCollectState,
useVGSCollectResponse,
VGSCollectForm
} from "@vgs/collect-js-react";
} from '@vgs/collect-js-react';

const { TextField } = VGSCollectForm;

Expand Down
2 changes: 1 addition & 1 deletion example/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from 'react'
import ReactDOM from 'react-dom'
import { BrowserRouter } from 'react-router-dom';
import App from './App'
import { VGSCollectProvider } from "collect-js-react";
import { VGSCollectProvider } from 'collect-js-react';

ReactDOM.render(
<VGSCollectProvider>
Expand Down
2 changes: 1 addition & 1 deletion src/Form.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useContext } from 'react';
import { setFormInstance, getFormInstance } from './state';
import { DispatchStateContext, DispatchSubmitContext } from "./provider";
import { DispatchStateContext, DispatchSubmitContext } from './provider';
import { HttpStatusCode } from './types/HttpStatusCode';
import {
IVGSCollectForm,
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export * from './types/Form';
export * from './types/Field';
export * from './provider';

export { VGSCollectForm };
export { VGSCollectForm };