Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
fiskus committed Dec 2, 2024
1 parent 0fcdf11 commit 2d5d5a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions catalog/app/components/FileEditor/HelpLinks.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jest.mock(
jest.mock(
'utils/StyledLink',
() =>
({ to, children }: React.PropsWithChildren<{ to: string }>) => (
<a href={to}>{children}</a>
({ href, to, children }: React.PropsWithChildren<{ href: string; to: string }>) => (
<a href={to || href}>{children}</a>
),
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ exports[`components/FileEditor/HelpLinks MissingSourceBucket should render 1`] =
ui.sourceBuckets
</code>
is empty.
<a
href="https://docs.quiltdata.com/v/master/catalog/preferences"
>
Learn more
</a>
.
</p>
<p
className="MuiTypography-root MuiTypography-body2"
Expand All @@ -23,13 +30,13 @@ exports[`components/FileEditor/HelpLinks MissingSourceBucket should render 1`] =
<a>
<span
className="makeStyles-nowrap-1"
className="makeStyles-nowrap-2"
>
auto-add
</span>
 current bucket (
<span
className="makeStyles-nowrap-1"
className="makeStyles-nowrap-2"
>
s3://
buck
Expand Down

0 comments on commit 2d5d5a7

Please sign in to comment.