Skip to content

Commit

Permalink
r
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 1, 2023
1 parent c3fb816 commit 848cc62
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/notes/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const NotesPage = () => {
<main>
<NotesChart setFilteredData={setFilteredData} setIsFiltered={setIsFiltered} isFiltered={isFiltered}/>
<span className='page-stats'>Showing {theItems?.length} {firebaseNotes?.length!==1? "notes":"note"} of {firebaseNotes?.length}</span>
<div classNmae="page-flex">
<div classNmae="px-3 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
{theItems?.map((item)=><NoteItem key={uuidv4()} item={item}/>)}
</div>
<div className='pagnation__'>
Expand Down
10 changes: 5 additions & 5 deletions components/display/display.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const Display = () => {
useEffect(()=>{
if (!isSearch){

console.log("strongText,isNote,isStrong",strongText,isNote,isStrong,)
//console.log("strongText,isNote,isStrong",strongText,isNote,isStrong,)
}
},[isSearch])
useEffect(()=>{
Expand All @@ -71,7 +71,7 @@ const Display = () => {

}
setNoteids(newids)
console.log(newids,"new ids")
//console.log(newids,"new ids")
}else {
setNoteids((prev)=>null)
}
Expand Down Expand Up @@ -113,7 +113,7 @@ const Display = () => {
}
let newColors = [...firebaseColors].reverse()
let newIDs = [...firebaseids].reverse()
console.log(newIDs,newColors)
//console.log(newIDs,newColors)
setFirebaseHighlightsColors(newColors)
setFirebaseHighlightsIds(newIDs)
// const newHighlights =Array(theText?.length).fill("var(--bg-1)")
Expand Down Expand Up @@ -161,7 +161,7 @@ const Display = () => {
const RemoveHighlight = ()=>{

setStartVerse(-1)
console.log("removed highlight")
//console.log("removed highlight")

}

Expand Down Expand Up @@ -464,7 +464,7 @@ const Display = () => {
}
setWordsHighlighted(newHighlightIds)

console.log(newHighlightObj)
//console.log(newHighlightObj)

setHighlightObject(newHighlightObj)
// for (let i=0;i<pureText.length;i++){
Expand Down
2 changes: 1 addition & 1 deletion styles/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
background:linear-gradient(to right, var(--t-2), var(--t-4));
background-clip: text;
-webkit-background-clip: text;
text-shadow: ;
/* text-shadow: ; */

}
.display__loader__icon {
Expand Down

1 comment on commit 848cc62

@vercel
Copy link

@vercel vercel bot commented on 848cc62 Sep 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.