diff --git a/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx b/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx
index 171082ed..14af57e6 100644
--- a/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx
+++ b/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx
@@ -130,6 +130,7 @@ export const RepositoryList = ({ octokit }: RepositoryListProps) => {
options={options}
placeholder="Select a repository"
value={selectedAccount}
+ leftIcon={selectedAccount ? : undefined}
rightIcon={}
onChange={(value) => setSelectedAccount(value as SelectOption)}
/>
diff --git a/packages/frontend/src/components/shared/Select/Select.tsx b/packages/frontend/src/components/shared/Select/Select.tsx
index 8c7e9149..0e82edcc 100644
--- a/packages/frontend/src/components/shared/Select/Select.tsx
+++ b/packages/frontend/src/components/shared/Select/Select.tsx
@@ -375,6 +375,8 @@ export const Select = ({
'w-6': isMultipleHasValueButNotSearchable && !hideValues,
// Add margin to the X icon
'ml-6': isMultipleHasValueButNotSearchable && clearable,
+ // Add padding if there's a left icon
+ 'pl-7': leftIcon,
},
)}
/>