Skip to content

Commit 7928f70

Browse files
authored
Merge pull request #161 from glideapps/undeprecate-json-fetch
feat: ⏪ dont deprecate json fetch
2 parents 3053f78 + 5b12685 commit 7928f70

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/columns/fetch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const run: glide.Column = async (url, query) => {
2626
};
2727

2828
export default glide.column({
29-
deprecated: true,
3029
name: "Fetch JSON",
3130
category: "Data & APIs",
3231
released: "sandboxed",

src/components/REPL.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const REPL: React.VFC<ColumnDefinition<any>> = props => {
4141
{deprecated ? (
4242
<div className="bg-yellow-100 border-l-4 border-yellow-500 text-yellow-700 p-4 mb-4" role="alert">
4343
<p className="font-bold">Deprecated Column</p>
44-
<p className="my-2">Glide apps that already use this column will continue to work, but the column will no longer be available for new configurations.</p>
44+
<p className="my-2">This column has been deprecated. The feature will continue to work in apps that are currently using it, but new apps will be unable to add this column.</p>
4545
</div>
4646
) : null}
4747
<div className="space-y-6">

0 commit comments

Comments
 (0)