Skip to content

Commit

Permalink
chore: fix wrong case on type definition and lint
Browse files Browse the repository at this point in the history
- This should have been `flagSet` so corrected now whilst editing this file
  • Loading branch information
Mike-Heneghan committed Dec 20, 2023
1 parent e3ff19c commit 80968f5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type SelectedUrlsMetadata = Record<"selectedUrls", string[]>;
export type BackwardsNavigationInitiatorType = "change" | "back";

type NodeMetadata = {
flagset?: FlagSet;
flagSet?: FlagSet;
displayText?: {
heading?: string;
description?: string;
Expand Down Expand Up @@ -421,12 +421,12 @@ export const AnalyticsProvider: React.FC<{ children: React.ReactNode }> = ({
flagSet,
displayText,
flag,
isAutoAnswered
isAutoAnswered,
};

default:
return {
isAutoAnswered
isAutoAnswered,
};
}
}
Expand Down

0 comments on commit 80968f5

Please sign in to comment.