Skip to content

Commit

Permalink
ui: fix for undefined in url
Browse files Browse the repository at this point in the history
  • Loading branch information
karolina-siemieniuk-morawska committed Sep 30, 2024
1 parent cabe1d4 commit dddc5f0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ const AuthorDetailPageContainer: React.FC<AuthorDetailPageContainerProps> = ({
Restart current step
</Button>
<Button className="mb2 w-75" type="primary">
<a href={`/editor/backoffice/${id}`} target="_blank">
<a href={`/editor/backoffice/${id}`}>
<EditOutlined />
{' '}
Open in Editor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,6 @@ exports[`AuthorDetailPageContainer should render the AuthorDetailPageContainer 1
>
<a
href="/editor/backoffice/undefined"
target="_blank"
>
<span
aria-label="edit"
Expand Down

0 comments on commit dddc5f0

Please sign in to comment.