From 0ea5082991a46b0dad398965aae74929cc684959 Mon Sep 17 00:00:00 2001 From: Alisha Evans Date: Mon, 6 Mar 2023 16:57:56 -0600 Subject: [PATCH] update the nextlink component story arg to match prop type --- src/components/NextLink/NextLink.stories.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/NextLink/NextLink.stories.jsx b/src/components/NextLink/NextLink.stories.jsx index f0ee0069..e838d0e8 100644 --- a/src/components/NextLink/NextLink.stories.jsx +++ b/src/components/NextLink/NextLink.stories.jsx @@ -12,5 +12,8 @@ export const Default = Template.bind({}) Default.args = { text: 'Text Here', addClass: '', - path: '/', + path: { + pathname: '/test', + query: {}, + }, }