Skip to content

Commit 54eecda

Browse files
authored
Mark dialog outlet with use client (#201)
Co-authored-by: Alex Nicholson <alex.n@clove.kitchen>
1 parent 7a21bc5 commit 54eecda

3 files changed

Lines changed: 17 additions & 1 deletion

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: V3.2.0 has been released
3+
description: Release notes for version 3.2.0
4+
date: 2025-10-12
5+
---
6+
7+
Version 3.2.0 for React Dialog Async has been released 🎉
8+
9+
## What's new?
10+
11+
- Fixes `DialogOutlet` not being marked with `"use client"`.
12+
---
13+
14+
Feedback or ideas? We'd love to hear them! Open an issue over on [GitHub](https://github.com/a16n-dev/react-dialog-async/issues).

packages/react-dialog-async/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-dialog-async",
33
"description": "Ergonomic & performant dialog hooks for React & React Native",
44
"type": "module",
5-
"version": "3.1.0",
5+
"version": "3.2.0",
66
"sideEffects": false,
77
"main": "./dist/index.cjs",
88
"module": "./dist/index.js",

packages/react-dialog-async/src/DialogOutlet/DialogOutlet.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use client';
2+
13
import { useContext, useEffect } from 'react';
24
import { GlobalDialogStateContext } from '../context/GlobalDialogStateContext.js';
35
import { useRenderDialogs } from './useRenderDialogs.js';

0 commit comments

Comments
 (0)