-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nitpick: fixed a spcouple of quick slling io& de-style issue /s + ain…
…or change to the Survey.yearQuarter format
- Loading branch information
1 parent
09cb1b0
commit 9bcf504
Showing
3 changed files
with
3 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export function processSurvey(data: { year: string; quarter: string }) { | ||
return { | ||
...data, | ||
yearQuarter: `${data.year} - ${data.quarter}`, | ||
yearQuarter: `${data.year}-${data.quarter}`, | ||
}; | ||
} |