|
@@ -279,9 +279,9 @@ export const generateInitialsImage = (name) => {
|
|
|
const initials =
|
|
|
sanitizedName.length > 0
|
|
|
? sanitizedName[0] +
|
|
|
- (sanitizedName.split(' ').length > 1
|
|
|
- ? sanitizedName[sanitizedName.lastIndexOf(' ') + 1]
|
|
|
- : '')
|
|
|
+ (sanitizedName.split(' ').length > 1
|
|
|
+ ? sanitizedName[sanitizedName.lastIndexOf(' ') + 1]
|
|
|
+ : '')
|
|
|
: '';
|
|
|
|
|
|
ctx.fillText(initials.toUpperCase(), canvas.width / 2, canvas.height / 2);
|
|
@@ -348,10 +348,10 @@ export const compareVersion = (latest, current) => {
|
|
|
return current === '0.0.0'
|
|
|
? false
|
|
|
: current.localeCompare(latest, undefined, {
|
|
|
- numeric: true,
|
|
|
- sensitivity: 'case',
|
|
|
- caseFirst: 'upper'
|
|
|
- }) < 0;
|
|
|
+ numeric: true,
|
|
|
+ sensitivity: 'case',
|
|
|
+ caseFirst: 'upper'
|
|
|
+ }) < 0;
|
|
|
};
|
|
|
|
|
|
export const findWordIndices = (text) => {
|
|
@@ -846,6 +846,9 @@ export const promptTemplate = (
|
|
|
if (user_location) {
|
|
|
// Replace {{USER_LOCATION}} in the template with the current location
|
|
|
template = template.replace('{{USER_LOCATION}}', user_location);
|
|
|
+ } else {
|
|
|
+ // Replace {{USER_LOCATION}} in the template with 'Unknown' if no location is provided
|
|
|
+ template = template.replace('{{USER_LOCATION}}', 'LOCATION_UNKNOWN');
|
|
|
}
|
|
|
|
|
|
return template;
|