update display name

This commit is contained in:
Nate Kelley 2025-07-11 16:14:59 -06:00
parent f41f16c108
commit c2dee1e5be
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 5 additions and 3 deletions

View File

@ -791,3 +791,5 @@ const AppSplitterBase = forwardRef<
);
export const AppSplitter = React.memo(AppSplitterWrapper);
AppSplitter.displayName = 'AppSplitter';

View File

@ -95,9 +95,9 @@ export function useLocalStorageState<T>(
const [state, setState] = useState<T | undefined>(getInitialValue);
// Initialize state from localStorage on mount
useMount(() => {
setState(getInitialValue());
});
// useMount(() => {
// setState(getInitialValue());
// });
// Update localStorage when state changes
useEffect(() => {