mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-177): refactor sales order management with new schema and API integration
This commit is contained in:
+1
-1
@@ -32,7 +32,7 @@ export const formatNumber = (
|
||||
|
||||
export function formatVechicleNumber(value: string): string {
|
||||
let result = '';
|
||||
for (let i = 0; i < value.length; i++) {
|
||||
for (let i = 0; i < (value?.length ?? 0); i++) {
|
||||
const curr = value[i];
|
||||
const prev = value[i - 1];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user