Skip to content

Commit

Permalink
fix(fix-deployment-2025-01-12): remove ssr:false
Browse files Browse the repository at this point in the history
remove ssr:false
  • Loading branch information
snomiao committed Jan 12, 2025
1 parent 57899d8 commit f707c89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/(dashboard)/rules/[name]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import { FollowRuleSets } from "@/src/FollowRules";
import { updateFollowRuleSet } from "@/src/updateFollowRuleSet";
import dynamicComponent from "next/dynamic";
Expand All @@ -18,7 +19,7 @@ export default async function FollowRulesPage({ params: { name = "default" } })
<RuleSetWhirler
name={name}
updateFollowRuleSet={updateFollowRuleSet}
defaultYaml={defaultYaml}
defaultYaml={defaultYaml}i
defaultMatchResults={await updateFollowRuleSet({ yaml: defaultYaml, name })}
enabled={enabled}
/>
Expand Down

0 comments on commit f707c89

Please sign in to comment.