Skip to content

Commit 926c6ff

Browse files
committed
address nit comments
1 parent d54a791 commit 926c6ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/src/components/UserDropdownContent/UserDropdownContent.stories.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ import { UserDropdownContent, UserDropdownContentProps } from "./UserDropdownCon
66
export default {
77
title: "components/UserDropdownContent",
88
component: UserDropdownContent,
9-
argTypes: {},
109
}
1110

12-
const Template: Story<UserDropdownContentProps> = (args: UserDropdownContentProps) => <UserDropdownContent {...args} />
11+
const Template: Story<UserDropdownContentProps> = (args) => <UserDropdownContent {...args} />
1312

1413
export const ExampleNoRoles = Template.bind({})
1514
ExampleNoRoles.args = {

site/src/components/UserDropdownContent/UserDropdownContent.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export const Language = {
2020
docsLabel: "Documentation",
2121
signOutLabel: "Sign Out",
2222
}
23+
2324
export interface UserDropdownContentProps {
2425
user: TypesGen.User
2526
onPopoverClose: () => void

0 commit comments

Comments
 (0)