Skip to content

Commit 528c2f8

Browse files
committed
Don't double up / in Outcome import
1 parent 18b2b36 commit 528c2f8

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.0.10] - 2025-04-08
2+
3+
- Do not double up hashes on Outcome import
4+
15
## [0.0.9] - 2025-04-08
26

37
- Don't make use of inputs for commands that don't have inputs

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
foobara-typescript-react-command-form-generator (0.0.9)
4+
foobara-typescript-react-command-form-generator (0.0.10)
55
foobara-typescript-remote-command-generator (~> 0.0.1)
66

77
GEM

templates/CommandForm.tsx.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState, JSX } from 'react'
22

3-
import { Outcome } from "<%= path_to_root %>/base/Outcome"
3+
import { Outcome } from "<%= path_to_root %>base/Outcome"
44

55
import { <%= command_name %> } from "<%= path_to_root %><%= command_generator.import_path %>"
66
<% unless empty_inputs? %>

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Foobara
22
module Generators
33
module TypescriptReactCommandFormGenerator
4-
VERSION = "0.0.9".freeze
4+
VERSION = "0.0.10".freeze
55

66
local_ruby_version = File.read("#{__dir__}/.ruby-version").chomp
77
local_ruby_version_minor = local_ruby_version[/\A(\d+\.\d+)\.\d+\z/, 1]

0 commit comments

Comments
 (0)