Skip to content

Commit

Permalink
[editor][hotfix] Fix Debounced Update Prompt Callback (#723)
Browse files Browse the repository at this point in the history
# [editor][hotfix] Fix Debounced Update Prompt Callback

Was incorrectly indexing .aiconfig from the resulting aiconfig (which
types fine since AIConfig is completely open)
  • Loading branch information
rholinshead authored Jan 3, 2024
2 parents df9e0fc + 98763de commit 559b6f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default function EditorContainer({
dispatch({
type: "CONSOLIDATE_AICONFIG",
action,
config: serverConfigRes.aiconfig,
config: serverConfigRes,
})
);
} catch (err: unknown) {
Expand Down

0 comments on commit 559b6f7

Please sign in to comment.