Skip to content

Commit d3693c7

Browse files
committed
no that messes up the layout
1 parent 378f63f commit d3693c7

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

flagsmith-jira-app/src/frontend/components/AppSettingsPage.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,7 @@ const AppSettingsForm = ({
157157
<Fragment>
158158
<Box xcss={{ marginBottom: "space.300" }}>
159159
<Inline space="space.050" alignBlock="center">
160-
<Text>
161-
<Strong>Organisation:</Strong>
162-
</Text>{" "}
160+
<Strong>Organisation:</Strong>{" "}
163161
{!!currentOrganisation && <Text>{currentOrganisation.name}</Text>}
164162
{!apiKeyInvalid && !currentOrganisation && (
165163
<Lozenge appearance="moved">Not connected</Lozenge>

flagsmith-jira-app/src/frontend/components/ProjectSettingsPage.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,7 @@ const ProjectSettingsForm = ({ setError, saveProjectId, ...props }: ProjectSetti
113113
<Fragment>
114114
<Box xcss={{ marginBottom: "space.300" }}>
115115
<Inline space="space.050" alignBlock="center">
116-
<Text>
117-
<Strong>Project:</Strong>
118-
</Text>{" "}
119-
{!!currentProject && <Text>{currentProject.name}</Text>}
116+
<Strong>Project:</Strong> {!!currentProject && <Text>{currentProject.name}</Text>}
120117
{!currentProject && projects && projects.length > 0 && !connected && (
121118
<Lozenge appearance="moved">Not connected</Lozenge>
122119
)}

0 commit comments

Comments
 (0)