From 0ed76f3b30221fa83d5826650a2cd84d2764008c Mon Sep 17 00:00:00 2001 From: Zai Shi Date: Mon, 24 Jun 2024 10:37:22 +0200 Subject: [PATCH] fixed typo --- docs/fern/docs/pages/getting-started/users.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fern/docs/pages/getting-started/users.mdx b/docs/fern/docs/pages/getting-started/users.mdx index 7fd2ae0e9..c8eb81985 100644 --- a/docs/fern/docs/pages/getting-started/users.mdx +++ b/docs/fern/docs/pages/getting-started/users.mdx @@ -202,7 +202,7 @@ To see more examples of how to use the `User` object, check out the [User API do You can update the user's information by calling `user.update()` with the new data. The user data from the `userUser()` hook will also be updated automatically. Here is an example: ```tsx title="Update user display name" -'user client'; +'use client'; import { useUser } from "@stackframe/stack"; export default function UpdateUser() {