We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50cbb7 commit c7cd51aCopy full SHA for c7cd51a
components/SponsoredFeedsTableWithData.tsx
@@ -114,8 +114,8 @@ export const SponsoredFeedsTable = ({
114
const importFn =
115
networkImports[networkKey as keyof typeof networkImports];
116
if (importFn) {
117
- const module = await importFn();
118
- setFeeds(module.default || []);
+ const feedsModule = await importFn();
+ setFeeds(feedsModule.default || []);
119
}
120
};
121
@@ -195,7 +195,7 @@ export const SponsoredFeedsTable = ({
195
</tr>
196
</thead>
197
<tbody className="bg-white dark:bg-gray-900">
198
- {feeds.map((feed, index) => {
+ {feeds.map((feed) => {
199
const formattedParams = formatUpdateParams(feed);
200
const isDefault = formattedParams === defaultParams;
201
0 commit comments