Skip to content

Commit

Permalink
Merge pull request #9567 from DestinyItemManager/upgrades
Browse files Browse the repository at this point in the history
Upgrades
  • Loading branch information
bhollis authored Jun 13, 2023
2 parents 87ff7b2 + ed9ffc8 commit f6c68e0
Show file tree
Hide file tree
Showing 3 changed files with 899 additions and 903 deletions.
2 changes: 1 addition & 1 deletion src/app/item-feed/ItemFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function ItemFeed({ page }: { page?: boolean }) {

const untaggedItems = hideTagged ? allItems.filter((i) => !hideTagged || !getTag(i)) : allItems;

const items = untaggedItems.filter((i) => isNewerThan(i, itemFeedWatermark ?? '0'));
const items = untaggedItems.filter((i) => isNewerThan(i, itemFeedWatermark));

const header = (
<>
Expand Down
1 change: 0 additions & 1 deletion src/app/settings/initial-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ export interface Settings extends DimApiSettings {
export const initialSettingsState: Settings = {
...defaultSettings,
language: defaultLanguage(),
itemFeedWatermark: '0',
};
Loading

0 comments on commit f6c68e0

Please sign in to comment.