diff options
| author | bobzel <zzzman@gmail.com> | 2024-04-29 23:00:22 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-04-29 23:00:22 -0400 |
| commit | f6a741f38a33bdb30b3a1d88215656dcd3d0712d (patch) | |
| tree | df88320222c743d26f2b1341c1489671277baec9 /src/client/views/newlightbox/RecommendationList/utils.ts | |
| parent | ab873e90112f2cac204a57a1b405cc241f7e8381 (diff) | |
eslint fixes.
Diffstat (limited to 'src/client/views/newlightbox/RecommendationList/utils.ts')
| -rw-r--r-- | src/client/views/newlightbox/RecommendationList/utils.ts | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/client/views/newlightbox/RecommendationList/utils.ts b/src/client/views/newlightbox/RecommendationList/utils.ts index cdfff3258..fbf8ac19f 100644 --- a/src/client/views/newlightbox/RecommendationList/utils.ts +++ b/src/client/views/newlightbox/RecommendationList/utils.ts @@ -1,9 +1,8 @@ -import { IRecommendation } from "../components"; +import { IRecommendation } from '../components'; export interface IRecommendationList { - loading?: boolean, - keywords?: string[], - recs?: IRecommendation[] - getRecs?: any + loading?: boolean; + keywords?: string[]; + recs?: IRecommendation[]; + getRecs?: any; } - |
