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 424f3c9 commit 9fe9208Copy full SHA for 9fe9208
components/projects/CreateProject/CreateProjectForm.tsx
@@ -227,7 +227,10 @@ export const CreateProjectForm = ({
227
)}
228
229
<Tooltip title="Toggle whether this project can be viewed by other platform users">
230
- <PrivacyToggle defaultPrivacy={defaultPrivacy} flavour={values.flavour} />
+ {/* Span to prevent forward ref warning, probably fixed in react 19 */}
231
+ <span>
232
+ <PrivacyToggle defaultPrivacy={defaultPrivacy} flavour={values.flavour} />
233
+ </span>
234
</Tooltip>
235
236
{!modal && (
0 commit comments