Skip to content

Commit

Permalink
New debugger (#5335)
Browse files Browse the repository at this point in the history
  • Loading branch information
gilluminate authored Oct 2, 2024
1 parent 1e34790 commit c0fc642
Show file tree
Hide file tree
Showing 37 changed files with 750 additions and 761 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ The types of changes are:

### Developer Experience
- Migrate toggle switches from Chakra to Ant Design [#5323](https://github.com/ethyca/fides/pull/5323)
- Replace `debugLog` with global scoped `fidesDebugger` for better debug experience and optimization of prod code [#5335](https://github.com/ethyca/fides/pull/5335)


### Fixed
- Updating the hash migration status check query to use the available indexes [#5336](https://github.com/ethyca/fides/pull/5336)
Expand Down
4 changes: 4 additions & 0 deletions clients/admin-ui/global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module globalThis {
// needs to be in global scope of Admin UI for when we import fides-js components which contain fidesDebugger
let fidesDebugger: (...args: unknown[]) => void;
}
Loading

0 comments on commit c0fc642

Please sign in to comment.