mirror of
https://github.com/Sevichecc/raycast-akkoma-extension.git
synced 2025-04-30 14:49:29 +08:00
style: change the name of params
This commit is contained in:
parent
8ddb374a26
commit
16450b1e46
1 changed files with 5 additions and 5 deletions
|
@ -34,14 +34,14 @@ export default function ViewStatusCommand() {
|
|||
|
||||
return (
|
||||
<List isShowingDetail isLoading={isLoading} searchBarPlaceholder="Search your status">
|
||||
{status?.map((statu) => (
|
||||
{status?.map((status) => (
|
||||
<List.Item
|
||||
title={statu.akkoma.source.content}
|
||||
key={statu.id}
|
||||
detail={<List.Item.Detail markdown={statusParser(statu, "date")} />}
|
||||
title={status.akkoma.source.content}
|
||||
key={status.id}
|
||||
detail={<List.Item.Detail markdown={statusParser(status, "date")} />}
|
||||
actions={
|
||||
<ActionPanel>
|
||||
<Action.OpenInBrowser title="Open Original Status" url={statu.url} />
|
||||
<Action.OpenInBrowser title="Open Original Status" url={status.url} />
|
||||
</ActionPanel>
|
||||
}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue