Skip to content

Commit

Permalink
fix: space history ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
baiirun committed Jan 10, 2025
1 parent f14d084 commit ce55fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/core/io/subgraph/fetch-completed-proposals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { graphql } from './graphql';
const getFetchSpaceProposalsQuery = (spaceId: string, first: number, skip: number) => `query {
proposals(first: ${first}, filter: { status: { equalTo: ACCEPTED }, spaceId: {equalTo: ${JSON.stringify(
spaceId
)}}}, orderBy: CREATED_BY_ID_DESC, offset: ${skip}) {
)}}}, orderBy: END_TIME_DESC, offset: ${skip}) {
nodes {
id
type
Expand Down

0 comments on commit ce55fcf

Please sign in to comment.