File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
packages/insomnia/src/ui/components/project Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ export const ProjectSettingsForm: FC<Props> = ({
291291 providerInfo = { selectedProvider }
292292 projectId = { project ! . _id }
293293 />
294- { showEmailSelector && (
294+ { showEmailSelector ? (
295295 < div className = "flex flex-col gap-2" >
296296 { isLoadingEmails ? (
297297 < div className = "flex items-center gap-2 text-sm" >
@@ -369,7 +369,14 @@ export const ProjectSettingsForm: FC<Props> = ({
369369 </ div >
370370 ) }
371371 </ div >
372- ) }
372+ ) : selectedCredential ?. author . email ? (
373+ < div className = "text-[12px]" >
374+ < div className = "flex" >
375+ < div className = "w-[110px] font-semibold" > Author Email</ div >
376+ < div > { selectedCredential ?. author . email } </ div >
377+ </ div >
378+ </ div >
379+ ) : null }
373380 </ >
374381 ) }
375382 { showGitRepoForm && (
You can’t perform that action at this time.
0 commit comments