@local-civics/hub-ui 0.1.133 → 0.1.134

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -4164,26 +4164,26 @@ const FormSubmitDialog$1 = (props) => {
4164
4164
  Button,
4165
4165
  {
4166
4166
  wide: true,
4167
- spacing: "md",
4167
+ spacing: "sm",
4168
4168
  justify: "center",
4169
4169
  border: "rounded",
4170
4170
  color: "blue",
4171
4171
  theme: "dark",
4172
4172
  text: "Edit Lesson",
4173
- size: "md-small-text",
4173
+ size: "sm",
4174
4174
  onClick: props.onEditLesson
4175
4175
  }
4176
4176
  ), /* @__PURE__ */ React.createElement(
4177
4177
  Button,
4178
4178
  {
4179
4179
  wide: true,
4180
- spacing: "md",
4180
+ spacing: "sm",
4181
4181
  justify: "center",
4182
4182
  border: "rounded",
4183
4183
  color: "blue",
4184
4184
  theme: "dark",
4185
4185
  text: "Back to Badge",
4186
- size: "md-small-text",
4186
+ size: "sm",
4187
4187
  onClick: props.onBackToBadge
4188
4188
  }
4189
4189
  ))));
@@ -4676,12 +4676,12 @@ const Registration = (props) => {
4676
4676
  const [givenName, setGivenName] = React.useState(props.givenName);
4677
4677
  const [familyName, setFamilyName] = React.useState(props.familyName);
4678
4678
  const [grade, setGrade] = React.useState(props.grade);
4679
- const [impactStatement, setImpactStatement] = React.useState(props.impactStatement || "");
4679
+ const [impactStatement, setImpactStatement] = React.useState(props.impactStatement || "None");
4680
4680
  const onRegister = () => props.onRegister && props.onRegister({
4681
4681
  givenName,
4682
4682
  familyName,
4683
4683
  grade,
4684
- impactStatement: impactStatement || ""
4684
+ impactStatement: impactStatement || "None"
4685
4685
  });
4686
4686
  return /* @__PURE__ */ React.createElement(
4687
4687
  "form",