File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
site/src/modules/workspaces/WorkspaceOutdatedTooltip Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,13 @@ import {
23
23
WorkspaceUpdateDialogs ,
24
24
} from "../WorkspaceUpdateDialogs" ;
25
25
26
- interface TooltipProps {
26
+ interface WorkspaceOutdatedTooltipProps {
27
27
workspace : Workspace ;
28
28
}
29
29
30
- export const WorkspaceOutdatedTooltip : FC < TooltipProps > = ( props ) => {
30
+ export const WorkspaceOutdatedTooltip : FC < WorkspaceOutdatedTooltipProps > = (
31
+ props ,
32
+ ) => {
31
33
const [ isOpen , setIsOpen ] = useState ( false ) ;
32
34
33
35
return (
@@ -41,7 +43,7 @@ export const WorkspaceOutdatedTooltip: FC<TooltipProps> = (props) => {
41
43
) ;
42
44
} ;
43
45
44
- type TooltipContentProps = TooltipProps & { isOpen : boolean } ;
46
+ type TooltipContentProps = WorkspaceOutdatedTooltipProps & { isOpen : boolean } ;
45
47
46
48
const WorkspaceOutdatedTooltipContent : FC < TooltipContentProps > = ( {
47
49
workspace,
You can’t perform that action at this time.
0 commit comments