Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactored CSS files in src/screens/Users #2599

Closed
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: 0 additions & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
v22.7.0
95 changes: 0 additions & 95 deletions src/screens/Users/Users.module.css

This file was deleted.

2 changes: 1 addition & 1 deletion src/screens/Users/Users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import UsersTableItem from 'components/UsersTableItem/UsersTableItem';
import InfiniteScroll from 'react-infinite-scroll-component';
import type { InterfaceQueryUserListItem } from 'utils/interfaces';
import styles from './Users.module.css';
import styles from '../../style/app.module.css';
import useLocalStorage from 'utils/useLocalstorage';
import type { ApolloError } from '@apollo/client';
/**
Expand Down Expand Up @@ -91,8 +91,8 @@
}: {
data?: { users: InterfaceQueryUserListItem[] };
loading: boolean;
fetchMore: any;

Check failure on line 94 in src/screens/Users/Users.tsx

View workflow job for this annotation

GitHub Actions / Performs linting, formatting, type-checking, checking for different source and target branch

Unexpected any. Specify a different type
refetch: any;

Check failure on line 95 in src/screens/Users/Users.tsx

View workflow job for this annotation

GitHub Actions / Performs linting, formatting, type-checking, checking for different source and target branch

Unexpected any. Specify a different type
error?: ApolloError;
} = useQuery(USER_LIST, {
variables: {
Expand Down Expand Up @@ -171,7 +171,7 @@
setHasMore(true);
};

const handleSearchByEnter = (e: any): void => {

Check failure on line 174 in src/screens/Users/Users.tsx

View workflow job for this annotation

GitHub Actions / Performs linting, formatting, type-checking, checking for different source and target branch

Unexpected any. Specify a different type
if (e.key === 'Enter') {
const { value } = e.target;
handleSearch(value);
Expand Down
Loading
Loading