@@ -67,7 +67,7 @@ export default defineSchema({
6767
6868 location : v . optional (
6969 v . object ( {
70- displayText : v . string ( ) ,
70+ displayText : v . string ( ) ,
7171 address : v . optional ( v . string ( ) ) ,
7272 isVirtual : v . boolean ( ) ,
7373 buildingCode : v . optional ( v . string ( ) ) , // "Gates 114", "CIS 250"
@@ -81,7 +81,7 @@ export default defineSchema({
8181 v . literal ( "registration" ) , // more for courses, hackathons, etc.
8282 v . literal ( "application" ) , // internships, jobs, programs
8383 v . literal ( "rsvp" ) , // events with physical link (decide if combines with registration)
84- v . literal ( "info" ) , // general info, websites, etc.
84+ v . literal ( "info" ) , // general info, websites, etc.
8585 v . literal ( "social" ) , // instagram, etc.
8686 ) ,
8787 label : v . optional ( v . string ( ) ) , // "Apply here", "RSVP Link"
@@ -101,7 +101,8 @@ export default defineSchema({
101101
102102 tags : v . array ( v . string ( ) ) ,
103103 targetAudience : v . optional (
104- v . union ( // decide if we need all or define more
104+ v . union (
105+ // decide if we need all or define more
105106 v . literal ( "all" ) ,
106107 v . literal ( "first_year" ) ,
107108 v . literal ( "women_nonbinary" ) ,
@@ -118,7 +119,6 @@ export default defineSchema({
118119 v . literal ( "paid" ) ,
119120 ) ,
120121 ) ,
121-
122122 } )
123123 . index ( "by_listserv" , [ "listserv" ] )
124124 . index ( "by_section" , [ "listservSection" ] )
0 commit comments