Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
majkshkurti committed Oct 23, 2024
1 parent 13df110 commit d57a25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/lib/validations/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export const nearbyStationsSchema = z.object({
export type PostNearbyStations = z.infer<typeof nearbyStationsSchema>;

//**=== HEATMAP GRAVITY === */
export const heatmapImpedanceFunctionEnum = z.enum(["gaussian"]); // todo: add "linear", "exponential", "power"
export const heatmapImpedanceFunctionEnum = z.enum(["gaussian", "linear", "exponential", "power"]);
export const heatmapGravitySchema = z.object({
impedance_function: heatmapImpedanceFunctionEnum,
opportunities: z.array(
Expand Down

0 comments on commit d57a25d

Please sign in to comment.