diff --git a/docs/snippets/react/login-form-with-play-function.js.mdx b/docs/snippets/react/login-form-with-play-function.js.mdx index 4ee6f88631b..01d5427e428 100644 --- a/docs/snippets/react/login-form-with-play-function.js.mdx +++ b/docs/snippets/react/login-form-with-play-function.js.mdx @@ -22,7 +22,7 @@ export const EmptyForm = Template.bind({}); export const FilledForm = Template.bind({}); FilledForm.play = async ({ canvasElement }) => { - // Starts querying the component from it's root element + // Starts querying the component from its root element const canvas = within(canvasElement); await userEvent.type(canvas.getByTestId('email'), 'email@provider.com', { @@ -35,4 +35,4 @@ FilledForm.play = async ({ canvasElement }) => { // See https://storybook.js.org/docs/react/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel await userEvent.click(canvas.getByRole('button')); }; -``` \ No newline at end of file +```