Skip to content

Commit

Permalink
fix: remove a ts ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Megio committed Aug 29, 2023
1 parent ee0da1c commit ae8c1df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions qwik-graphql-tailwind/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,10 @@ export const SEARCH_PULLS = ({
state: 'open' | 'closed';
}) => {
const params = {
per_page: first,
per_page: first?.toString() || DEFAULT_PAGE_SIZE.toString(),
sort: OrderFieldRest[sort || 'CREATED_AT'],
order: direction?.toLowerCase() || 'asc',
};
//@ts-ignore
const queryStrings = convertObjectToQueryString(params);
const milestone_check = `+milestone:"${
typeof milestone === 'string' ? replaceEncodedSpaceWithPlus(encodeURIComponent(milestone)) : milestone
Expand Down
2 changes: 1 addition & 1 deletion qwik-graphql-tailwind/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig(() => {
return {
plugins: [qwikCity(), qwikVite(), qwikReact(), tsconfigPaths()],
optimizeDeps: {
include: ['date-fns', 'classnames', 'react-markdown', 'rehype-raw', 'remark-gfm', 'msw-storybook-addon', 'msw']
include: ['date-fns', 'classnames', 'react-markdown', 'rehype-raw', 'remark-gfm', 'msw-storybook-addon', 'msw'],
},
test: {
// ...
Expand Down

0 comments on commit ae8c1df

Please sign in to comment.