From 6a6a462b2cf44edd96b51a66cc92e95b45426f1a Mon Sep 17 00:00:00 2001 From: Richard Roggenkemper <46740234+roggenkemper@users.noreply.github.com> Date: Tue, 25 Feb 2025 11:55:05 -0800 Subject: [PATCH] chore(issue-details): Add hook for retention period (#85875) adds the hook definition needed for https://github.com/getsentry/getsentry/pull/16615, will add where the hook is used in a different PR (after we have access to the hook) --- static/app/types/hooks.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/static/app/types/hooks.tsx b/static/app/types/hooks.tsx index 41edf0edae80bb..66ce6773cc5050 100644 --- a/static/app/types/hooks.tsx +++ b/static/app/types/hooks.tsx @@ -341,6 +341,7 @@ export type ReactHooks = { ) => React.ContextType; 'react-hook:use-button-tracking': (props: ButtonProps) => () => void; 'react-hook:use-experiment': UseExperiment; + 'react-hook:use-get-max-retention-days': () => number | undefined; }; /**