We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6f476 commit 3c57b41Copy full SHA for 3c57b41
packages/compass-welcome/src/components/web-welcome-tab.tsx
@@ -46,7 +46,12 @@ export default function WebWelcomeTab() {
46
{numConnections === 0 && (
47
<>
48
<Button
49
- as={Link}
+ as={
50
+ /* The type assert is a temporary workaround for https://jira.mongodb.org/browse/LG-5590 */
51
+ Link as React.FunctionComponent<{
52
+ href: string;
53
+ }>
54
+ }
55
data-testid="add-new-atlas-cluster-button"
56
variant={ButtonVariant.Primary}
57
href={'#/clusters/starterTemplates'}
0 commit comments