diff --git a/web/components/contract/prob-change-table.tsx b/web/components/contract/prob-change-table.tsx
index 47fcf7d2..16de0d44 100644
--- a/web/components/contract/prob-change-table.tsx
+++ b/web/components/contract/prob-change-table.tsx
@@ -11,8 +11,9 @@ export function ProbChangeTable(props: {
changes:
| { positiveChanges: CPMMContract[]; negativeChanges: CPMMContract[] }
| undefined
+ full?: boolean
}) {
- const { changes } = props
+ const { changes, full } = props
if (!changes) return
@@ -24,7 +25,10 @@ export function ProbChangeTable(props: {
negativeChanges.findIndex((c) => c.probChanges.day > -threshold) + 1
)
const maxRows = Math.min(positiveChanges.length, negativeChanges.length)
- const rows = Math.min(3, Math.min(maxRows, countOverThreshold))
+ const rows = Math.min(
+ full ? Infinity : 3,
+ Math.min(maxRows, countOverThreshold)
+ )
const filteredPositiveChanges = positiveChanges.slice(0, rows)
const filteredNegativeChanges = negativeChanges.slice(0, rows)
diff --git a/web/pages/experimental/daily-movers.tsx b/web/pages/experimental/daily-movers.tsx
new file mode 100644
index 00000000..1e5b4c48
--- /dev/null
+++ b/web/pages/experimental/daily-movers.tsx
@@ -0,0 +1,21 @@
+import { ProbChangeTable } from 'web/components/contract/prob-change-table'
+import { Col } from 'web/components/layout/col'
+import { Page } from 'web/components/page'
+import { Title } from 'web/components/title'
+import { useProbChanges } from 'web/hooks/use-prob-changes'
+import { useUser } from 'web/hooks/use-user'
+
+export default function DailyMovers() {
+ const user = useUser()
+
+ const changes = useProbChanges(user?.id ?? '')
+
+ return (
+
+
+
+
+
+
+ )
+}
diff --git a/web/pages/experimental/home/index.tsx b/web/pages/experimental/home/index.tsx
index d1391dc1..b425bf03 100644
--- a/web/pages/experimental/home/index.tsx
+++ b/web/pages/experimental/home/index.tsx
@@ -61,7 +61,7 @@ export default function Home() {
-
+
@@ -197,7 +197,7 @@ function DailyMoversSection(props: { userId: string | null | undefined }) {
return (
-
+
)