Skip to content

Commit

Permalink
Order fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thedanielforum committed Jul 8, 2022
1 parent 0b960cb commit 843c7aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/HeaderNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const HeaderNavbar: React.FC = () => {
};

return (
<header className="sticky top-0 h-12 border-b-2 border-gray-500 bg-white w-full mb-2">
<header className="sticky top-0 h-12 border-b-2 border-gray-500 bg-white w-full mb-2 z-50">
<div className="max-w-screen-md ml-auto mr-auto">
<div className="flex justify-between pt-2">
<button
Expand Down
4 changes: 2 additions & 2 deletions constants/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ export const GET_CATEGORY = gql`
`;

export const GET_TRANSACTIONS = gql`
query GetTransactions($order: TransactionOrder) {
queryTransaction(order: $order) {
query GetTransactions($order: TransactionOrder, $filter: TransactionFilter) {
queryTransaction(order: $order, filter: $filter) {
id
amount
date
Expand Down

1 comment on commit 843c7aa

@vercel
Copy link

@vercel vercel bot commented on 843c7aa Jul 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ikura – ./

www.ikura.app
ikura-git-main-zefhub.vercel.app
ikura-zefhub.vercel.app
ikura.app
ikura.vercel.app

Please sign in to comment.