diff --git a/app/utils/photo-tag-suggestions.js b/app/utils/photo-tag-suggestions.js index eb6407b..279b225 100644 --- a/app/utils/photo-tag-suggestions.js +++ b/app/utils/photo-tag-suggestions.js @@ -2,11 +2,11 @@ import { POI_CATEGORIES } from './poi-categories'; import { getMatchingPoiCategoryIds } from './poi-category-matcher'; export const CATEGORY_TAGS = { - restaurants: ['food', 'menu', 'vibe', 'front'], - coffee: ['food', 'menu', 'vibe', 'front'], - groceries: ['front', 'food'], - 'things-to-do': ['architecture', 'amenities', 'vibe', 'front'], - accommodation: ['rooms', 'amenities', 'food', 'vibe', 'front'], + restaurants: ['front', 'food', 'drinks', 'menu', 'vibe'], + coffee: ['front', 'food', 'drinks', 'menu', 'vibe'], + groceries: ['front', 'products'], + 'things-to-do': ['front', 'architecture', 'amenities', 'vibe'], + accommodation: ['front', 'rooms', 'amenities', 'food', 'drinks', 'vibe'], }; export function getSuggestedPhotoTags(place) { diff --git a/tests/integration/components/place-photo-upload-test.gjs b/tests/integration/components/place-photo-upload-test.gjs index 44fa490..e93797a 100644 --- a/tests/integration/components/place-photo-upload-test.gjs +++ b/tests/integration/components/place-photo-upload-test.gjs @@ -49,7 +49,7 @@ module('Integration | Component | place-photo-upload', function (hooks) { assert.dom('.photo-tag-suggestions').exists(); assert.dom('.photo-tag-chip').exists(); - assert.dom('.photo-tag-chip').includesText('Food'); + assert.dom('.photo-tag-chip').includesText('Front'); }); test('it only allows one selected tag at a time', async function (assert) {