Skip to content

Commit

Permalink
feat: sonar report fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alichherawalla committed Apr 15, 2024
1 parent e7dd566 commit 0b529ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/scenes/ExampleScreen/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const exampleContainerReducer = (state = initialState, action) =>
produce(state, () => {
switch (action.type) {
case exampleScreenTypes.REQUEST_FETCH_USER:
return fetchUser(state, action);
return fetchUser(state);
case exampleScreenTypes.SUCCESS_FETCH_USER:
return successFetchUser(state, action);
case exampleScreenTypes.FAILURE_FETCH_USER:
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sonar.projectKey=wednesday-solutions_react-native-template_AY7hdnRSB2n8RRmGoU2M
sonar.language=js
sonar.sources=app
sonar.sources=.
sonar.tests=app
sonar.exclusions=**/android/**,**/ios/**,**/node_modules/**
sonar.test.inclusions=**/*.test.js
Expand Down

0 comments on commit 0b529ae

Please sign in to comment.