Skip to content

Commit

Permalink
fix incorrect minimal check
Browse files Browse the repository at this point in the history
  • Loading branch information
gilluminate committed Sep 18, 2024
1 parent 04c15c4 commit ffa0ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/fides-js/src/components/tcf/TcfOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export const TcfOverlay = ({
return;
}
let tcf: TcfSavePreferences;
if (experienceMinimal.minimal_tcf) {
if (!experience && experienceMinimal?.minimal_tcf) {
tcf = createTcfSavePayloadFromMinExp({
experienceMinimal,
enabledIds,
Expand Down

0 comments on commit ffa0ab6

Please sign in to comment.