[WEB-5510] fix: handle null values in context indicator for improved stability (#8190)
This commit is contained in:
parent
39749106a2
commit
3c84e75350
2 changed files with 4 additions and 5 deletions
|
|
@ -1,8 +1,8 @@
|
|||
// local imports
|
||||
import type { TPowerKContextTypeExtended } from "../types";
|
||||
import type { TPowerKContextType } from "@/components/power-k/core/types";
|
||||
|
||||
type TArgs = {
|
||||
activeContext: TPowerKContextTypeExtended | null;
|
||||
activeContext: TPowerKContextType | null;
|
||||
};
|
||||
|
||||
export const useExtendedContextIndicator = (_args: TArgs): string | null => null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue