fix: render RepositoryCreateDialog on desktop when adding repository
RepositoryCreateDialog was only rendered inside the isMobile block. Desktop 'Add Repository' clicks set state but the dialog never appeared. Add conditional rendering in the desktop section. Quality gates: tsc --noEmit pass, npm run build pass, 80/80 tests pass
This commit is contained in:
@@ -65,7 +65,10 @@ export const ProjectCard = ({
|
||||
type="button"
|
||||
aria-expanded={expanded}
|
||||
>
|
||||
<Icon name={expanded ? "chevron-down" : "chevron-right"} size="sm" />
|
||||
<Icon
|
||||
name={expanded ? "chevron-down" : "chevron-right"}
|
||||
size="sm"
|
||||
/>
|
||||
</button>
|
||||
)}
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user