diff options
author | Ambroise C <ambroise.christea@sonarsource.com> | 2023-09-11 19:25:35 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-09-12 20:02:41 +0000 |
commit | 8d5275ca04be8dbb4b4c7cb0068fe3f1320f1554 (patch) | |
tree | 73f1aa91e094c9ec92bc312096619ec6e54c87be /server/sonar-web/src/main/js/app/components/app-state/withAppStateContext.tsx | |
parent | f0e873e18885be912862f5361bd4a77f6f6faac1 (diff) | |
download | sonarqube-8d5275ca04be8dbb4b4c7cb0068fe3f1320f1554.tar.gz sonarqube-8d5275ca04be8dbb4b4c7cb0068fe3f1320f1554.zip |
SONAR-20327 Run new version of prettier on all files
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/app-state/withAppStateContext.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/app-state/withAppStateContext.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/app/components/app-state/withAppStateContext.tsx b/server/sonar-web/src/main/js/app/components/app-state/withAppStateContext.tsx index 5bd6de482ce..1dc86de5a8c 100644 --- a/server/sonar-web/src/main/js/app/components/app-state/withAppStateContext.tsx +++ b/server/sonar-web/src/main/js/app/components/app-state/withAppStateContext.tsx @@ -27,7 +27,7 @@ export interface WithAppStateContextProps { } export default function withAppStateContext<P>( - WrappedComponent: React.ComponentType<P & WithAppStateContextProps> + WrappedComponent: React.ComponentType<P & WithAppStateContextProps>, ) { return class WithAppStateContext extends React.PureComponent< Omit<P, keyof WithAppStateContextProps> |