Skip to content

Commit e7bbe44

Browse files
committed
Allow any object
1 parent 493a83d commit e7bbe44

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/libs/wdk-client/src/Views/User/ServiceAccessPanel.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ const getAuthorizationToken = (): string | undefined => {
1111
}
1212
};
1313

14-
const ServiceAccessPanel: React.FC<void> = () => {
14+
interface Props {}
15+
16+
const ServiceAccessPanel: React.FC<Props> = () => {
1517
let token =
1618
getAuthorizationToken() ||
1719
'Your authorization token is not currently available.';

0 commit comments

Comments
 (0)