Skip to content

Commit 365c208

Browse files
committed
chore: upgrade deps
1 parent 610fce2 commit 365c208

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
},
5656
"dependencies": {
5757
"@raycast/api": "^1.35.1",
58-
"jike-sdk": "^0.19.3",
58+
"jike-sdk": "^0.19.4",
5959
"react-use": "^17.4.0"
6060
},
6161
"devDependencies": {

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/views/feeds.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export function Feeds() {
4444
Awaited<ReturnType<JikeClient['queryFollowingUpdates']>>
4545
>([])
4646
const [lastKeys, setLastKeys] = useState<FollowingUpdatesMoreKey[]>([])
47-
console.log(lastKeys)
4847

4948
const fetchFeeds = async () => {
5049
if (!client) return
@@ -108,6 +107,7 @@ export function Feeds() {
108107
<FeedsContext.Provider value={context}>
109108
<List
110109
isLoading={loading}
110+
navigationTitle="动态"
111111
isShowingDetail={updates.length > 0}
112112
searchBarAccessory={userList}
113113
>
@@ -192,7 +192,7 @@ const OriginalPost = ({ post }: { post: JikePostWithDetail }) => {
192192
.replaceAll(/([!#()*+.[\\\]_`{}-])/g, `\\$1`)}
193193
194194
${post.detail.pictures
195-
?.map((picture) => `![图片](${picture.middlePicUrl})`)
195+
?.map((picture: Entity.Picture) => `![图片](${picture.middlePicUrl})`)
196196
.join('\n\n')}`,
197197
[post.detail.content, post.detail.pictures]
198198
)

0 commit comments

Comments
 (0)