fix styling issue,

fix bug in service worker and search URI

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu
2022-12-01 17:01:05 -08:00
parent 8924540757
commit 82aba63baf
4 changed files with 7 additions and 6 deletions

View File

@@ -89,7 +89,7 @@ export function updateReviewToStorage(ID, review){
//stars update recency if unchanged
for (let i in starArr){
if(starArr[i] == ID) {
starArr.splice(i,1)
starArr.splice(i,1);
starArr.push(ID);
break;
}