Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Feb 7, 2025
1 parent 9e6070d commit 3b09e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rdmo/projects/assets/js/projects/actions/projectsActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function fetchImportUrls() {
return function(dispatch) {
dispatch(fetchImportUrlsInit())
const action = (dispatch) => ProjectsApi.fetchDirectImportUrls().then(importUrls => {
dispatch(fettchImportUrlsSuccess(importUrls))
dispatch(fetchImportUrlsSuccess(importUrls))
})

return dispatch(action)
Expand All @@ -108,7 +108,7 @@ export function fetchImportUrlsInit() {
return {type: FETCH_IMPORT_URLS_INIT}
}

export function fettchImportUrlsSuccess(importUrls) {
export function fetchImportUrlsSuccess(importUrls) {
return {type: FETCH_IMPORT_URLS_SUCCESS, importUrls}
}

Expand Down

0 comments on commit 3b09e84

Please sign in to comment.