1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: point to useUiFlag instead of useUiFlags (#4748)

I was a little confused because I couldn't find `useUiFlags` in the
codebase.
This commit is contained in:
Thomas Heartman 2023-09-15 12:31:48 +02:00 committed by GitHub
parent aa5afad502
commit a96110eb36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ export interface IUiConfig {
* @deprecated `useUiFlags` can be used instead
* @example
* ```ts
* const yourFlag = useUiFlags("yourFlag")
* const yourFlag = useUiFlag("yourFlag")
* ```
*/
flags: UiFlags;