mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
removed logging
This commit is contained in:
parent
89ce816958
commit
17b94b3b36
@ -21,11 +21,7 @@ export const TagsControl = () => {
|
||||
}
|
||||
|
||||
|
||||
function formatTag(string : string) {
|
||||
console.log(string);
|
||||
|
||||
let formatedTag = string.replace(/_/g, " ");
|
||||
console.log(formatedTag);
|
||||
|
||||
function formatTag(string : string) {
|
||||
let formatedTag = string.replace(/_/g, " ");
|
||||
return formatedTag = formatedTag.charAt(0).toUpperCase() + formatedTag.slice(1);
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user