Skip to content

Commit

Permalink
🐛 fixed a type of the last fix
Browse files Browse the repository at this point in the history
  • Loading branch information
faburem authored Aug 1, 2024
1 parent 0dbb6a4 commit aefc00c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion imports/api/timecards/server/methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ const sendToSiwapp = new ValidatedMethod({
for await (const [project, resources] of projectMap.entries()) {
const projectElement = await Projects.findOneAsync({ _id: project })
if (resources.size > 0) {
for (const [resource, hours] of resourcses) {
for (const [resource, hours] of resources) {
invoiceJSON.data.relationships.items.data.push({
attributes: {
description: `${projectElement.name} (${resource})`,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "titra",
"version": "0.99.5",
"version": "0.99.6",
"private": true,
"scripts": {
"start": "meteor run"
Expand Down

0 comments on commit aefc00c

Please sign in to comment.