Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ikethecoder committed Jun 1, 2022
2 parents 4f6c436 + 735f792 commit 5f16f8d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions src/nextapp/components/auth-action/auth-action.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,6 @@ const Signin: React.FC<AuthActionProps> = ({ site }) => {
>
My Profile
</MenuItem>
<MenuItem
as="a"
color="text"
target="_blank"
href="/ds/api/v2/console"
data-testid="auth-menu-api-docs"
>
API Docs
</MenuItem>
<MenuItem
as="a"
color="text"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const ServiceAccountCreate: React.FC<ServiceAccountCreateProps> = ({
<CheckboxGroup>
<Wrap spacing={4}>
{isSuccess &&
data?.currentNamespace.scopes.map((s) => (
data?.currentNamespace?.scopes?.map((s) => (
<WrapItem key={s.name}>
<Checkbox value={s.name} name="scopes">
{s.name}
Expand Down
2 changes: 1 addition & 1 deletion src/nextapp/pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const LoginPage: React.FC = () => {
one of the options available below.
</Text>
<Box mt={7}>
<LoginButtons buttons={['idir', 'bceid', 'github']} />
<LoginButtons buttons={['idir', 'github']} />
</Box>
</GridItem>
<GridItem bgColor="white" p={10}>
Expand Down

0 comments on commit 5f16f8d

Please sign in to comment.