Skip to content

Commit

Permalink
Fix packages and linting errors
Browse files Browse the repository at this point in the history
`npm run ui` succeeds
  • Loading branch information
otech47 committed Jan 18, 2022
1 parent 1848e5e commit d930219
Show file tree
Hide file tree
Showing 6 changed files with 632 additions and 753 deletions.
1,366 changes: 622 additions & 744 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2"
}
}
1 change: 0 additions & 1 deletion src/components/ClientInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { styles } from '@material-ui/pickers/views/Calendar/Calendar'

const { lightGrey } = colors


const ClientInfo = ({
clientId
}) => {
Expand Down
7 changes: 4 additions & 3 deletions src/components/ClientsEmptyStateStripe.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ const ClientsEmptyStateStripe = () => {
Stripe credentials are detected.
</Typography>
<Typography color='secondary' variant='h6'>
Creating or updating a Stripe customer will trigger a synchronized Client

Any updates to the name and email of a Client will reflect in your<Link href='https://dashboard.stripe.com/dashboard'> Stripe dashboard</Link>
Creating or updating a Stripe customer will trigger a synchronized Trinary Client
<br/>
Any updates to the name and email of a synchronized Client will reflect in your
<Link href='https://dashboard.stripe.com/dashboard'> Stripe dashboard</Link>
</Typography>
<Box mt={5}>
<Icon className='fas fa-user-plus empty-icon' color='secondary'/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/GithubAccessBlocked.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React, {useEffect, useState} from 'react'
import React, { useEffect, useState } from 'react'
import {
Box,
Grid,
Typography,
Link
} from '@material-ui/core'
import {useLazyQuery, useQuery} from '@apollo/client';
import { useLazyQuery } from '@apollo/client';
import { GET_PROJECT } from '../operations/queries/ProjectQueries';

const GithubAccessBlocked = (props) => {
Expand Down
6 changes: 3 additions & 3 deletions src/components/ProjectEditDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ import {

import { SYNC_TOGGL_PROJECT, UPDATE_PROJECT } from '../operations/mutations/ProjectMutations'
import {
EXPECTED_BUDGET_TIMEFRAME_OPTIONS,
INVALID_TOGGL_URL_ERROR_MESSAGE,
MAX_INT,
EXPECTED_BUDGET_TIMEFRAME_OPTIONS,
INVALID_TOGGL_URL_ERROR_MESSAGE,
MAX_INT,
} from '../constants'

const ProjectEditDialog = (props) => {
Expand Down

0 comments on commit d930219

Please sign in to comment.