Skip to content

Commit

Permalink
doing stupid stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
angelaco11 committed Sep 17, 2024
1 parent 5e2020e commit ee41519
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/app-api/handlers/measures/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const editMeasure = handler(async (event, context) => {
//after updating the database with the latest values for the measure, we run the combine rates calculations for said measure
await calculateAndPutRate({
state,
year: year.toString(),
year,
coreSet,
measure,
});
Expand Down
2 changes: 1 addition & 1 deletion services/app-api/storage/table.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const mockMeasureParameters = {
state: "CO",
measure: "ZZZ-AD",
coreSet: "ACS",
year: "2024",
year: 2024,
};

const mockMeasure = {
Expand Down
2 changes: 1 addition & 1 deletion services/app-api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export enum MeasurementSpecificationType {

export interface RateParameters {
state: string;
year: string;
year: number;
coreSet: string;
measure: string;
}
Expand Down

0 comments on commit ee41519

Please sign in to comment.