✨ Simplify arrow function syntax and remove unnecessary whitespace across composable utilities
This commit is contained in:
@@ -30,7 +30,7 @@ export function useLocalStorage(key, defaultValue) {
|
||||
// Watch for changes and save to localStorage
|
||||
watch(
|
||||
storedValue,
|
||||
(newValue) => {
|
||||
newValue => {
|
||||
try {
|
||||
localStorage.setItem(key, JSON.stringify(newValue));
|
||||
} catch (error) {
|
||||
@@ -52,7 +52,7 @@ export function useLocalStorage(key, defaultValue) {
|
||||
export function useSearchHistory(key = 'searchHistory', maxItems = 5) {
|
||||
const history = useLocalStorage(key, []);
|
||||
|
||||
const addToHistory = (query) => {
|
||||
const addToHistory = query => {
|
||||
if (!query || query.trim() === '') return;
|
||||
|
||||
// Remove duplicates and add to front
|
||||
@@ -64,7 +64,7 @@ export function useSearchHistory(key = 'searchHistory', maxItems = 5) {
|
||||
history.value = newHistory;
|
||||
};
|
||||
|
||||
const removeFromHistory = (query) => {
|
||||
const removeFromHistory = query => {
|
||||
history.value = history.value.filter(item => item !== query);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user