diff --git a/site/src/components/Checkbox/Checkbox.tsx b/site/src/components/Checkbox/Checkbox.tsx
index 304a04ad5b4ca..6bc1338955122 100644
--- a/site/src/components/Checkbox/Checkbox.tsx
+++ b/site/src/components/Checkbox/Checkbox.tsx
@@ -8,6 +8,9 @@ import * as React from "react";
import { cn } from "utils/cn";
+/**
+ * To allow for an indeterminate state the checkbox must be controlled, otherwise the checked prop would remain undefined
+ */
export const Checkbox = React.forwardRef<
React.ElementRef