Ealanisln / ready-set

On-demand courier that specializes in delivery for all your needs. We are Food Safety, and HIPPA Certified. Our team can meet all your Bay Area delivery needs.
https://readysetllc.com
MIT License
0 stars 0 forks source link

On vendor registration, "do you provide option" serving utencils is wrong written. Should be “Serving Utensils”. #6

Closed fersanz-87 closed 4 days ago

fersanz-87 commented 6 days ago

On vendor registration, scrolling down on field "do you provide option" serving utencils is wrong written. Should be “Serving Utensils”. Correcting that word and it should be showed on the web page in the correct way.

fersanz-87 commented 4 days ago

Problem: On vendor registration, scrolling down on field "do you provide option" serving utencils is wrong written. Should be “Serving Utensils”.

Current code: export const PROVISIONS: readonly Option[] = [ { label: "Utensils", value: "Utensils" }, { label: "Labels", value: "Labels" }, { label: "Napkins", value: "Napkins" }, { label: "Serving Utencils", value: "Serving Utencils" }, { label: "Place Settings", value: "Place Settings" }, // Add other provisions ] as const;

Root causes: It was wrong written, checking the webpage I noticed this issue so I proceeded to check the code and correct it.

Solution: Surfing on the code, on FormData.ts file I found that word wrong written, so I wrote it in the correct way (Serving Utensils).

export const PROVISIONS: readonly Option[] = [ { label: "Utensils", value: "Utensils" }, { label: "Labels", value: "Labels" }, { label: "Napkins", value: "Napkins" }, { label: "Serving Utensils", value: "Serving Utensils" }, { label: "Place Settings", value: "Place Settings" }, // Add other provisions ] as const;