refactor: update import paths for react/compiler-runtime to react-compiler-runtime
feat: add OpenClaude local agent playbook for setup and usage instructions chore: implement provider bootstrap script for profile initialization chore: create provider launch script to manage provider execution chore: add system check script for runtime diagnostics and validation feat: implement useEffectEventCompat hook for React 18 compatibility
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import { c as _c } from "react/compiler-runtime";
|
||||
import { c as _c } from "react-compiler-runtime";
|
||||
import { feature } from 'bun:bundle';
|
||||
import React, { useContext, useEffect, useEffectEvent, useState, useSyncExternalStore } from 'react';
|
||||
import React, { useContext, useEffect, useState, useSyncExternalStore } from 'react';
|
||||
import { MailboxProvider } from '../context/mailbox.js';
|
||||
import { useEffectEventCompat } from '../hooks/useEffectEventCompat.js';
|
||||
import { useSettingsChange } from '../hooks/useSettingsChange.js';
|
||||
import { logForDebugging } from '../utils/debug.js';
|
||||
import { createDisabledBypassPermissionsContext, isBypassPermissionsModeDisabled } from '../utils/permissions/permissionSetup.js';
|
||||
@@ -87,7 +88,7 @@ export function AppStateProvider(t0) {
|
||||
} else {
|
||||
t4 = $[7];
|
||||
}
|
||||
const onSettingsChange = useEffectEvent(t4);
|
||||
const onSettingsChange = useEffectEventCompat(t4);
|
||||
useSettingsChange(onSettingsChange);
|
||||
let t5;
|
||||
if ($[8] !== children) {
|
||||
|
||||
Reference in New Issue
Block a user