Skip to content

Commit

Permalink
client: Fix ramda types
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Dec 29, 2024
1 parent 034c336 commit 132ecdf
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/js/helpers/ajax.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import formurlencoded from 'form-urlencoded';
import mergeDeepLeft from 'ramda/src/mergeDeepLeft.js';
import pipe from 'ramda/src/pipe.js';
import mergeDeepLeft from 'ramda/src/mergeDeepLeft';
import pipe from 'ramda/src/pipe';
import { HttpError, TimeoutError } from '../errors';

type Headers = {
Expand Down
2 changes: 1 addition & 1 deletion client/js/sharers.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useMemo } from 'react';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import map from 'ramda/src/map.js';
import map from 'ramda/src/map';
import selfoss from './selfoss-base';
import * as icons from './icons';
import { Configuration } from './model/Configuration';
Expand Down
28 changes: 28 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"@types/history": "^4.7.11",
"@types/html-escaper": "^3.0.2",
"@types/lodash-es": "^4.17.12",
"@types/ramda": "^0.30.2",
"@types/react": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.0",
Expand Down

0 comments on commit 132ecdf

Please sign in to comment.