diff --git a/packages/bruno-app/src/components/CollectionSettings/Auth/OAuth2/AuthorizationCode/StyledWrapper.js b/packages/bruno-app/src/components/CollectionSettings/Auth/OAuth2/AuthorizationCode/StyledWrapper.js
deleted file mode 100644
index 856f35b9b..000000000
--- a/packages/bruno-app/src/components/CollectionSettings/Auth/OAuth2/AuthorizationCode/StyledWrapper.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import styled from 'styled-components';
-
-const Wrapper = styled.div`
- label {
- font-size: 0.8125rem;
- }
- .single-line-editor-wrapper {
- max-width: 400px;
- padding: 0.15rem 0.4rem;
- border-radius: 3px;
- border: solid 1px ${(props) => props.theme.input.border};
- background-color: ${(props) => props.theme.input.bg};
- }
-`;
-
-export default Wrapper;
diff --git a/packages/bruno-app/src/components/CollectionSettings/Auth/OAuth2/AuthorizationCode/index.js b/packages/bruno-app/src/components/CollectionSettings/Auth/OAuth2/AuthorizationCode/index.js
deleted file mode 100644
index 9db8ab84f..000000000
--- a/packages/bruno-app/src/components/CollectionSettings/Auth/OAuth2/AuthorizationCode/index.js
+++ /dev/null
@@ -1,99 +0,0 @@
-import React from 'react';
-import get from 'lodash/get';
-import { useTheme } from 'providers/Theme';
-import { useDispatch } from 'react-redux';
-import SingleLineEditor from 'components/SingleLineEditor';
-import { saveCollectionRoot, sendCollectionOauth2Request } from 'providers/ReduxStore/slices/collections/actions';
-import StyledWrapper from './StyledWrapper';
-import { inputsConfig } from './inputsConfig';
-import { updateCollectionAuth } from 'providers/ReduxStore/slices/collections/index';
-
-const OAuth2AuthorizationCode = ({ collection }) => {
- const dispatch = useDispatch();
- const { storedTheme } = useTheme();
-
- const oAuth = get(collection, 'root.request.auth.oauth2', {});
-
- const handleRun = async () => {
- dispatch(sendCollectionOauth2Request(collection.uid));
- };
-
- const handleSave = () => dispatch(saveCollectionRoot(collection.uid));
-
- const { callbackUrl, authorizationUrl, accessTokenUrl, clientId, clientSecret, scope, state, pkce } = oAuth;
-
- const handleChange = (key, value) => {
- dispatch(
- updateCollectionAuth({
- mode: 'oauth2',
- collectionUid: collection.uid,
- content: {
- grantType: 'authorization_code',
- callbackUrl,
- authorizationUrl,
- accessTokenUrl,
- clientId,
- clientSecret,
- scope,
- state,
- pkce,
- [key]: value
- }
- })
- );
- };
-
- const handlePKCEToggle = (e) => {
- dispatch(
- updateCollectionAuth({
- mode: 'oauth2',
- collectionUid: collection.uid,
- content: {
- grantType: 'authorization_code',
- callbackUrl,
- authorizationUrl,
- accessTokenUrl,
- clientId,
- clientSecret,
- scope,
- state,
- pkce: !Boolean(oAuth?.['pkce'])
- }
- })
- );
- };
- return (
-