File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
site/src/pages/DeploySettingsPage/OAuth2AppsSettingsPage Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ type EditOAuth2AppProps = {
39
39
deleteApp : ( ) => void ;
40
40
generateAppSecret : ( ) => void ;
41
41
deleteAppSecret : ( id : string ) => void ;
42
- secrets ?: TypesGen . OAuth2AppSecret [ ] ;
42
+ secrets ?: readonly TypesGen . OAuth2AppSecret [ ] ;
43
43
newAppSecret ?: TypesGen . OAuth2AppSecretFull ;
44
44
dismissNewSecret : ( ) => void ;
45
45
error ?: unknown ;
@@ -177,7 +177,7 @@ export const EditOAuth2AppPageView: FC<EditOAuth2AppProps> = ({
177
177
} ;
178
178
179
179
type OAuth2AppSecretsTableProps = {
180
- secrets ?: TypesGen . OAuth2AppSecret [ ] ;
180
+ secrets ?: readonly TypesGen . OAuth2AppSecret [ ] ;
181
181
generateAppSecret : ( ) => void ;
182
182
isLoadingSecrets : boolean ;
183
183
isUpdating :
You can’t perform that action at this time.
0 commit comments