Skip to content

Commit 37cf60d

Browse files
committed
Add "can"
1 parent 2af8686 commit 37cf60d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/Specialty.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ export interface SpecialtyItem {
1010
export function Specialty({ specialty, location }: { specialty: SpecialtyItem, location: string }) {
1111
return <div className="flex flex-wrap justify-start text-center items-center mt-2 gap-1">
1212
<SmallIcon thing={specialty.special} location={location} sizeSet="s">{specialty.special.name}</SmallIcon>
13-
<div>be obtained by using </div>
13+
<div>can be obtained by using</div>
1414
<SmallIcon thing={specialty.char} location={location} sizeSet="s">{specialty.char.name}</SmallIcon>
15-
<div> while cooking </div>
15+
<div>while cooking</div>
1616
<SmallIcon thing={specialty.recipe} location={location} sizeSet="s">{specialty.recipe.name}</SmallIcon>
1717
</div>
1818
}

0 commit comments

Comments
 (0)