Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
AaDalal committed Jun 8, 2024
1 parent 07a1957 commit a51f662
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/alert/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const Nav = ({ login, logout, user, page, setPage }: NavProps) => (
nameLength={2}
login={login}
logout={logout}
pathname={window.location.pathname}
/>
</NavElt>
<NavElt
Expand Down
1 change: 1 addition & 0 deletions frontend/degree-plan/components/Dock/Dock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ const Dock = ({ user, login, logout, activeDegreeplanId }: DockProps) => {
login={login}
logout={logout}
dropdownTop={true}
pathname={window.location.pathname}
/>
<SearchIconContainer onClick={() => {
setSearchRuleQuery("");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type { User } from "../../../plan/types";
*/

const AccountIndicator: React.FC<{
user: User;
user: User | null | undefined;
login: (user: any) => void;
logout: () => void;
leftAligned?: boolean;
Expand Down

0 comments on commit a51f662

Please sign in to comment.