A personal media tracker built on the AT Protocol opnshelf.xyz
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove page numbers from trakt import status message

+3 -12
+1 -1
apps/mobile/components/up-next/UpNextShowList.tsx
··· 146 146 <View 147 147 style={[ 148 148 styles.progressTrack, 149 - { backgroundColor: colors.surfaceContainerHighest }, 149 + { backgroundColor: `${colors.primary}33` }, 150 150 ]} 151 151 > 152 152 <View
+1 -7
apps/web/src/components/up-next/UpNextShowCollection.tsx
··· 189 189 )} 190 190 </div> 191 191 {item.totalEpisodes > 0 ? ( 192 - <div 193 - className="mt-1.5 h-1 w-full overflow-hidden rounded-full" 194 - style={{ 195 - backgroundColor: 196 - "var(--md-sys-color-surface-container-highest)", 197 - }} 198 - > 192 + <div className="mt-1.5 h-1 w-full overflow-hidden rounded-full bg-(--md-sys-color-primary)/20"> 199 193 <div 200 194 className="h-full rounded-full transition-all duration-300" 201 195 style={{
+1 -4
packages/api/src/trakt-import-status.ts
··· 51 51 ); 52 52 } 53 53 if (job.status === "running") { 54 - const pageLabel = job.totalPages 55 - ? `Page ${job.currentPage} of ${job.totalPages}` 56 - : `Page ${job.currentPage}`; 57 - return `${pageLabel}. Imported ${job.importedCount}, skipped ${job.skippedCount}, failed ${job.failedCount}.`; 54 + return `Imported ${job.importedCount}, skipped ${job.skippedCount}, failed ${job.failedCount}.`; 58 55 } 59 56 if (job.status === "completed") { 60 57 return `Finished. Imported ${job.importedCount}, skipped ${job.skippedCount}, failed ${job.failedCount}.`;